Normalize FSharp templates and don't check in site.min.js
|
|
@ -13,14 +13,23 @@ function Test-Template($templateName, $templateArgs, $templateNupkg, $isSPA) {
|
|||
Push-Location $tmpDir
|
||||
try {
|
||||
Run-DotnetNew $templateArgs, "--no-restore"
|
||||
$csproj = "$tmpDir/$templateName.csproj"
|
||||
$csprojContent = Get-Content -Path $csproj -Raw
|
||||
$csprojContent = $csprojContent -replace ('<Project Sdk="Microsoft.NET.Sdk.Web">', "<Project Sdk=""Microsoft.NET.Sdk.Web"">`n<Import Project=""$PSScriptRoot/../test/Templates.Test/bin/Debug/netcoreapp2.2/TemplateTests.props"" />")
|
||||
$csprojContent | Set-Content $csproj
|
||||
|
||||
if($templateArgs -match 'F#')
|
||||
{
|
||||
$extension = "fsproj"
|
||||
}
|
||||
else
|
||||
{
|
||||
$extension = "csproj"
|
||||
}
|
||||
|
||||
$proj = "$tmpDir/$templateName.$extension"
|
||||
$projContent = Get-Content -Path $proj -Raw
|
||||
$projContent = $projContent -replace ('<Project Sdk="Microsoft.NET.Sdk.Web">', "<Project Sdk=""Microsoft.NET.Sdk.Web"">`n<Import Project=""$PSScriptRoot/../test/Templates.Test/bin/Debug/netcoreapp2.2/TemplateTests.props"" />")
|
||||
$projContent | Set-Content $proj
|
||||
|
||||
dotnet publish --configuration Release
|
||||
dotnet bin\Release\netcoreapp2.2\publish\$templateName.dll
|
||||
|
||||
}
|
||||
finally {
|
||||
Pop-Location
|
||||
|
|
|
|||
|
|
@ -1,38 +0,0 @@
|
|||
#!/usr/bin/env pwsh
|
||||
#requires -version 4
|
||||
|
||||
[CmdletBinding(PositionalBinding = $false)]
|
||||
param()
|
||||
|
||||
Set-StrictMode -Version 2
|
||||
$ErrorActionPreference = 'Stop'
|
||||
|
||||
Push-Location $PSScriptRoot
|
||||
try {
|
||||
npm install
|
||||
}
|
||||
finally {
|
||||
Pop-Location
|
||||
}
|
||||
|
||||
$projectContentDir = "$PSScriptRoot/../src/Microsoft.DotNet.Web.ProjectTemplates/content"
|
||||
|
||||
$contentDirs = Get-ChildItem -Path $projectContentDir -Directory
|
||||
|
||||
foreach ($contentDir in $contentDirs) {
|
||||
$wwwRoot = "$projectContentDir\$contentDir\wwwroot"
|
||||
|
||||
$cssFolder = Join-Path $wwwRoot "css"
|
||||
$siteCss = Join-Path $cssFolder "site.css"
|
||||
$siteMinCss = Join-Path $cssFolder "site.min.css"
|
||||
if (Test-Path $siteCss) {
|
||||
uglifycss $siteCss > $siteMinCss
|
||||
}
|
||||
|
||||
$jsFolder = Join-Path $wwwRoot "js"
|
||||
$siteJs = Join-Path $jsFolder "site.js"
|
||||
$siteMinJs = Join-Path $jsFolder "site.min.js"
|
||||
if (Test-Path $siteJs) {
|
||||
uglifyjs $siteJs --output $siteMinJs
|
||||
}
|
||||
}
|
||||
|
|
@ -1,14 +0,0 @@
|
|||
{
|
||||
"name": "scripts",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"dependencies": {
|
||||
"uglify-js": "~3.4.7",
|
||||
"uglifycss": "~0.0.29"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC"
|
||||
}
|
||||
|
|
@ -7,14 +7,13 @@
|
|||
|
||||
<environment include="Development">
|
||||
<link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.css" />
|
||||
<link rel="stylesheet" href="~/css/site.css" />
|
||||
</environment>
|
||||
<environment exclude="Development">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/css/bootstrap.min.css"
|
||||
asp-fallback-href="~/lib/bootstrap/dist/css/bootstrap.min.css"
|
||||
asp-fallback-test-class="sr-only" asp-fallback-test-property="position" asp-fallback-test-value="absolute" />
|
||||
<link rel="stylesheet" href="~/css/site.min.css" asp-append-version="true" />
|
||||
</environment>
|
||||
<link rel="stylesheet" href="~/css/site.css" />
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
|
|
@ -59,7 +58,6 @@
|
|||
<environment include="Development">
|
||||
<script src="~/lib/jquery/dist/jquery.js"></script>
|
||||
<script src="~/lib/bootstrap/dist/js/bootstrap.bundle.js"></script>
|
||||
<script src="~/js/site.js" asp-append-version="true"></script>
|
||||
</environment>
|
||||
<environment exclude="Development">
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"
|
||||
|
|
@ -74,8 +72,8 @@
|
|||
crossorigin="anonymous"
|
||||
integrity="sha256-E/V4cWE4qvAeO5MOhjtGtqDzPndRO1LBk8lJ/PR7CA4=">
|
||||
</script>
|
||||
<script src="~/js/site.min.js" asp-append-version="true"></script>
|
||||
</environment>
|
||||
<script src="~/js/site.js" asp-append-version="true"></script>
|
||||
|
||||
@RenderSection("Scripts", required: false)
|
||||
</body>
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 9.5 KiB |
|
Before Width: | Height: | Size: 8.2 KiB |
|
Before Width: | Height: | Size: 12 KiB |
|
|
@ -7,14 +7,13 @@
|
|||
|
||||
<environment include="Development">
|
||||
<link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.css" />
|
||||
<link rel="stylesheet" href="~/css/site.css" />
|
||||
</environment>
|
||||
<environment exclude="Development">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/css/bootstrap.min.css"
|
||||
asp-fallback-href="~/lib/bootstrap/dist/css/bootstrap.min.css"
|
||||
asp-fallback-test-class="sr-only" asp-fallback-test-property="position" asp-fallback-test-value="absolute" />
|
||||
<link rel="stylesheet" href="~/css/site.min.css" asp-append-version="true" />
|
||||
</environment>
|
||||
<link rel="stylesheet" href="~/css/site.css" />
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
|
|
@ -59,7 +58,6 @@
|
|||
<environment include="Development">
|
||||
<script src="~/lib/jquery/dist/jquery.js"></script>
|
||||
<script src="~/lib/bootstrap/dist/js/bootstrap.bundle.js"></script>
|
||||
<script src="~/js/site.js" asp-append-version="true"></script>
|
||||
</environment>
|
||||
<environment exclude="Development">
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"
|
||||
|
|
@ -74,8 +72,8 @@
|
|||
crossorigin="anonymous"
|
||||
integrity="sha256-E/V4cWE4qvAeO5MOhjtGtqDzPndRO1LBk8lJ/PR7CA4=">
|
||||
</script>
|
||||
<script src="~/js/site.min.js" asp-append-version="true"></script>
|
||||
</environment>
|
||||
<script src="~/js/site.js" asp-append-version="true"></script>
|
||||
|
||||
@RenderSection("Scripts", required: false)
|
||||
</body>
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 9.5 KiB |
|
Before Width: | Height: | Size: 8.2 KiB |
|
Before Width: | Height: | Size: 12 KiB |
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"directory": "wwwroot/lib"
|
||||
}
|
||||
|
|
@ -2,93 +2,7 @@
|
|||
ViewData["Title"] = "Home Page";
|
||||
}
|
||||
|
||||
<div id="myCarousel" class="carousel slide" data-ride="carousel" data-interval="6000">
|
||||
<ol class="carousel-indicators">
|
||||
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
|
||||
<li data-target="#myCarousel" data-slide-to="1"></li>
|
||||
<li data-target="#myCarousel" data-slide-to="2"></li>
|
||||
</ol>
|
||||
<div class="carousel-inner" role="listbox">
|
||||
<div class="item active">
|
||||
<img src="~/images/banner1.svg" alt="ASP.NET" class="img-responsive" />
|
||||
<div class="carousel-caption" role="option">
|
||||
<p>
|
||||
Learn how to build ASP.NET apps that can run anywhere.
|
||||
<a class="btn btn-default" href="https://go.microsoft.com/fwlink/?LinkID=525028&clcid=0x409">
|
||||
Learn More
|
||||
</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item">
|
||||
<img src="~/images/banner2.svg" alt="Visual Studio" class="img-responsive" />
|
||||
<div class="carousel-caption" role="option">
|
||||
<p>
|
||||
There are powerful new features in Visual Studio for building modern web apps.
|
||||
<a class="btn btn-default" href="https://go.microsoft.com/fwlink/?LinkID=525030&clcid=0x409">
|
||||
Learn More
|
||||
</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item">
|
||||
<img src="~/images/banner3.svg" alt="Microsoft Azure" class="img-responsive" />
|
||||
<div class="carousel-caption" role="option">
|
||||
<p>
|
||||
Learn how Microsoft's Azure cloud platform allows you to build, deploy, and scale web apps.
|
||||
<a class="btn btn-default" href="https://go.microsoft.com/fwlink/?LinkID=525027&clcid=0x409">
|
||||
Learn More
|
||||
</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<a class="left carousel-control" href="#myCarousel" role="button" data-slide="prev">
|
||||
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
|
||||
<span class="sr-only">Previous</span>
|
||||
</a>
|
||||
<a class="right carousel-control" href="#myCarousel" role="button" data-slide="next">
|
||||
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
|
||||
<span class="sr-only">Next</span>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-3">
|
||||
<h2>Application uses</h2>
|
||||
<ul>
|
||||
<li>Sample pages using ASP.NET Core MVC</li>
|
||||
<li>Theming using <a href="https://go.microsoft.com/fwlink/?LinkID=398939">Bootstrap</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
<h2>How to</h2>
|
||||
<ul>
|
||||
<li><a href="https://go.microsoft.com/fwlink/?LinkID=398600">Add a Controller and View</a></li>
|
||||
<li><a href="https://go.microsoft.com/fwlink/?LinkId=699315">Manage User Secrets using Secret Manager.</a></li>
|
||||
<li><a href="https://go.microsoft.com/fwlink/?LinkId=699316">Use logging to log a message.</a></li>
|
||||
<li><a href="https://go.microsoft.com/fwlink/?LinkId=699317">Add packages using NuGet.</a></li>
|
||||
<li><a href="https://go.microsoft.com/fwlink/?LinkId=699319">Target development, staging or production environment.</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
<h2>Overview</h2>
|
||||
<ul>
|
||||
<li><a href="https://go.microsoft.com/fwlink/?LinkId=518008">Conceptual overview of what is ASP.NET Core</a></li>
|
||||
<li><a href="https://go.microsoft.com/fwlink/?LinkId=699320">Fundamentals of ASP.NET Core such as Startup and middleware.</a></li>
|
||||
<li><a href="https://go.microsoft.com/fwlink/?LinkId=398602">Working with Data</a></li>
|
||||
<li><a href="https://go.microsoft.com/fwlink/?LinkId=398603">Security</a></li>
|
||||
<li><a href="https://go.microsoft.com/fwlink/?LinkID=699321">Client side development</a></li>
|
||||
<li><a href="https://go.microsoft.com/fwlink/?LinkID=699322">Develop on different platforms</a></li>
|
||||
<li><a href="https://go.microsoft.com/fwlink/?LinkID=699323">Read more on the documentation site</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
<h2>Run & Deploy</h2>
|
||||
<ul>
|
||||
<li><a href="https://go.microsoft.com/fwlink/?LinkID=517851">Run your app</a></li>
|
||||
<li><a href="https://go.microsoft.com/fwlink/?LinkID=517853">Run tools such as EF migrations and more</a></li>
|
||||
<li><a href="https://go.microsoft.com/fwlink/?LinkID=398609">Publish to Microsoft Azure Web Apps</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="text-center">
|
||||
<h1 class="display-4">Welcome</h1>
|
||||
<p>Learn about <a href="https://docs.microsoft.com/aspnet/core">building Web apps with ASP.NET Core</a>.</p>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -0,0 +1,25 @@
|
|||
@using Microsoft.AspNetCore.Http.Features
|
||||
|
||||
@{
|
||||
var consentFeature = Context.Features.Get<ITrackingConsentFeature>();
|
||||
var showBanner = !consentFeature?.CanTrack ?? false;
|
||||
var cookieString = consentFeature?.CreateConsentCookie();
|
||||
}
|
||||
|
||||
@if (showBanner)
|
||||
{
|
||||
<div id="cookieConsent" class="alert alert-info alert-dismissible fade show" role="alert">
|
||||
Use this space to summarize your privacy and cookie use policy. <a asp-page="/Privacy">Learn More</a>.
|
||||
<button type="button" class="accept-policy close" data-dismiss="alert" aria-label="Close" data-cookie-string="@cookieString">
|
||||
<span aria-hidden="true">Accept</span>
|
||||
</button>
|
||||
</div>
|
||||
<script>
|
||||
(function () {
|
||||
var button = document.querySelector("#cookieConsent button[data-cookie-string]");
|
||||
button.addEventListener("click", function (event) {
|
||||
document.cookie = button.dataset.cookieString;
|
||||
}, false);
|
||||
})();
|
||||
</script>
|
||||
}
|
||||
|
|
@ -7,48 +7,52 @@
|
|||
|
||||
<environment include="Development">
|
||||
<link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.css" />
|
||||
<link rel="stylesheet" href="~/css/site.css" />
|
||||
</environment>
|
||||
<environment exclude="Development">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/css/bootstrap.min.css"
|
||||
asp-fallback-href="~/lib/bootstrap/dist/css/bootstrap.min.css"
|
||||
asp-fallback-test-class="sr-only" asp-fallback-test-property="position" asp-fallback-test-value="absolute" />
|
||||
<link rel="stylesheet" href="~/css/site.min.css" asp-append-version="true" />
|
||||
</environment>
|
||||
<link rel="stylesheet" href="~/css/site.css" />
|
||||
</head>
|
||||
<body>
|
||||
<nav class="navbar navbar-inverse navbar-fixed-top">
|
||||
<div class="container">
|
||||
<div class="navbar-header">
|
||||
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
|
||||
<span class="sr-only">Toggle navigation</span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
<header>
|
||||
<nav class="navbar navbar-expand-sm navbar-toggleable-sm navbar-light bg-white border-bottom box-shadow mb-3">
|
||||
<div class="container">
|
||||
<a class="navbar-brand" asp-area="" asp-controller="Home" asp-action="Index">Company.WebApplication1</a>
|
||||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target=".navbar-collapse" aria-controls="navbarSupportedContent"
|
||||
aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<a asp-area="" asp-controller="Home" asp-action="Index" class="navbar-brand">Company.WebApplication1</a>
|
||||
<div class="navbar-collapse collapse d-sm-inline-flex flex-sm-row-reverse">
|
||||
<ul class="navbar-nav flex-grow-1">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-dark" asp-area="" asp-controller="Home" asp-action="Index">Page1</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-dark" asp-area="" asp-controller="Home" asp-action="Index">Page2</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="navbar-collapse collapse">
|
||||
<ul class="nav navbar-nav">
|
||||
<li><a asp-area="" asp-controller="Home" asp-action="Index">Home</a></li>
|
||||
<li><a asp-area="" asp-controller="Home" asp-action="About">About</a></li>
|
||||
<li><a asp-area="" asp-controller="Home" asp-action="Contact">Contact</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
<div class="container body-content">
|
||||
@RenderBody()
|
||||
<hr />
|
||||
<footer>
|
||||
<p>© copyrightYear - Company.WebApplication1</p>
|
||||
</footer>
|
||||
</nav>
|
||||
</header>
|
||||
<div class="container">
|
||||
<partial name="_CookieConsentPartial" />
|
||||
<main role="main" class="pb-3">
|
||||
@RenderBody()
|
||||
</main>
|
||||
</div>
|
||||
|
||||
<footer class="border-top footer text-muted">
|
||||
<div class="container">
|
||||
© copyrightYear - Company.WebApplication1 - <a asp-area="" asp-controller="Home" asp-action="Privacy">Privacy</a>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<environment include="Development">
|
||||
<script src="~/lib/jquery/dist/jquery.js"></script>
|
||||
<script src="~/lib/bootstrap/dist/js/bootstrap.bundle.js"></script>
|
||||
<script src="~/js/site.js" asp-append-version="true"></script>
|
||||
</environment>
|
||||
<environment exclude="Development">
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"
|
||||
|
|
@ -63,8 +67,8 @@
|
|||
crossorigin="anonymous"
|
||||
integrity="sha256-E/V4cWE4qvAeO5MOhjtGtqDzPndRO1LBk8lJ/PR7CA4=">
|
||||
</script>
|
||||
<script src="~/js/site.min.js" asp-append-version="true"></script>
|
||||
</environment>
|
||||
<script src="~/js/site.js" asp-append-version="true"></script>
|
||||
|
||||
@RenderSection("Scripts", required: false)
|
||||
</body>
|
||||
|
|
|
|||
|
|
@ -1,32 +1,56 @@
|
|||
/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
|
||||
for details on configuring this project to bundle and minify static web assets. */
|
||||
|
||||
a.navbar-brand {
|
||||
white-space: normal;
|
||||
text-align: center;
|
||||
word-break: break-all;
|
||||
}
|
||||
|
||||
/* Sticky footer styles
|
||||
-------------------------------------------------- */
|
||||
html {
|
||||
font-size: 14px;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
html {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
.border-top {
|
||||
border-top: 1px solid #e5e5e5;
|
||||
}
|
||||
.border-bottom {
|
||||
border-bottom: 1px solid #e5e5e5;
|
||||
}
|
||||
|
||||
.box-shadow {
|
||||
box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
|
||||
}
|
||||
|
||||
button.accept-policy {
|
||||
font-size: 1rem;
|
||||
line-height: inherit;
|
||||
}
|
||||
|
||||
/* Sticky footer styles
|
||||
-------------------------------------------------- */
|
||||
html {
|
||||
position: relative;
|
||||
min-height: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
padding-top: 50px;
|
||||
padding-bottom: 20px;
|
||||
/* Margin bottom by footer height */
|
||||
margin-bottom: 60px;
|
||||
}
|
||||
|
||||
/* Wrapping element */
|
||||
/* Set some basic padding to keep content from hitting the edges */
|
||||
.body-content {
|
||||
padding-left: 15px;
|
||||
padding-right: 15px;
|
||||
}
|
||||
|
||||
/* Carousel */
|
||||
.carousel-caption p {
|
||||
font-size: 20px;
|
||||
line-height: 1.4;
|
||||
}
|
||||
|
||||
/* Make .svg files in the carousel display properly in older browsers */
|
||||
.carousel-inner .item img[src$=".svg"] {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* Hide/rearrange for smaller screens */
|
||||
@media screen and (max-width: 767px) {
|
||||
/* Hide captions */
|
||||
.carousel-caption {
|
||||
display: none;
|
||||
}
|
||||
.footer {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
white-space: nowrap;
|
||||
/* Set the fixed height of the footer here */
|
||||
height: 60px;
|
||||
line-height: 60px; /* Vertically center the text there */
|
||||
}
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 9.5 KiB |
|
Before Width: | Height: | Size: 8.2 KiB |
|
Before Width: | Height: | Size: 12 KiB |
|
|
@ -29,12 +29,7 @@
|
|||
"Properties/launchSettings.json",
|
||||
"wwwroot/favicon.ico",
|
||||
"wwwroot/css/site.css",
|
||||
"wwwroot/css/site.min.css",
|
||||
"wwwroot/images/banner1.svg",
|
||||
"wwwroot/images/banner2.svg",
|
||||
"wwwroot/images/banner3.svg",
|
||||
"wwwroot/js/site.js",
|
||||
"wwwroot/js/site.min.js",
|
||||
"wwwroot/lib/bootstrap/LICENSE",
|
||||
"wwwroot/lib/bootstrap/dist/css/bootstrap.css",
|
||||
"wwwroot/lib/bootstrap/dist/css/bootstrap.css.map",
|
||||
|
|
@ -95,12 +90,7 @@
|
|||
"Properties/launchSettings.json",
|
||||
"wwwroot/favicon.ico",
|
||||
"wwwroot/css/site.css",
|
||||
"wwwroot/css/site.min.css",
|
||||
"wwwroot/images/banner1.svg",
|
||||
"wwwroot/images/banner2.svg",
|
||||
"wwwroot/images/banner3.svg",
|
||||
"wwwroot/js/site.js",
|
||||
"wwwroot/js/site.min.js",
|
||||
"wwwroot/lib/bootstrap/LICENSE",
|
||||
"wwwroot/lib/bootstrap/dist/css/bootstrap.css",
|
||||
"wwwroot/lib/bootstrap/dist/css/bootstrap.css.map",
|
||||
|
|
@ -162,12 +152,7 @@
|
|||
"Properties/launchSettings.json",
|
||||
"wwwroot/favicon.ico",
|
||||
"wwwroot/css/site.css",
|
||||
"wwwroot/css/site.min.css",
|
||||
"wwwroot/images/banner1.svg",
|
||||
"wwwroot/images/banner2.svg",
|
||||
"wwwroot/images/banner3.svg",
|
||||
"wwwroot/js/site.js",
|
||||
"wwwroot/js/site.min.js",
|
||||
"wwwroot/lib/bootstrap/LICENSE",
|
||||
"wwwroot/lib/bootstrap/dist/css/bootstrap.css",
|
||||
"wwwroot/lib/bootstrap/dist/css/bootstrap.css.map",
|
||||
|
|
@ -229,12 +214,7 @@
|
|||
"Properties/launchSettings.json",
|
||||
"wwwroot/favicon.ico",
|
||||
"wwwroot/css/site.css",
|
||||
"wwwroot/css/site.min.css",
|
||||
"wwwroot/images/banner1.svg",
|
||||
"wwwroot/images/banner2.svg",
|
||||
"wwwroot/images/banner3.svg",
|
||||
"wwwroot/js/site.js",
|
||||
"wwwroot/js/site.min.js",
|
||||
"wwwroot/lib/bootstrap/LICENSE",
|
||||
"wwwroot/lib/bootstrap/dist/css/bootstrap.css",
|
||||
"wwwroot/lib/bootstrap/dist/css/bootstrap.css.map",
|
||||
|
|
@ -295,12 +275,7 @@
|
|||
"Properties/launchSettings.json",
|
||||
"wwwroot/favicon.ico",
|
||||
"wwwroot/css/site.css",
|
||||
"wwwroot/css/site.min.css",
|
||||
"wwwroot/images/banner1.svg",
|
||||
"wwwroot/images/banner2.svg",
|
||||
"wwwroot/images/banner3.svg",
|
||||
"wwwroot/js/site.js",
|
||||
"wwwroot/js/site.min.js",
|
||||
"wwwroot/lib/bootstrap/LICENSE",
|
||||
"wwwroot/lib/bootstrap/dist/css/bootstrap.css",
|
||||
"wwwroot/lib/bootstrap/dist/css/bootstrap.css.map",
|
||||
|
|
@ -362,12 +337,7 @@
|
|||
"Properties/launchSettings.json",
|
||||
"wwwroot/favicon.ico",
|
||||
"wwwroot/css/site.css",
|
||||
"wwwroot/css/site.min.css",
|
||||
"wwwroot/images/banner1.svg",
|
||||
"wwwroot/images/banner2.svg",
|
||||
"wwwroot/images/banner3.svg",
|
||||
"wwwroot/js/site.js",
|
||||
"wwwroot/js/site.min.js",
|
||||
"wwwroot/lib/bootstrap/LICENSE",
|
||||
"wwwroot/lib/bootstrap/dist/css/bootstrap.css",
|
||||
"wwwroot/lib/bootstrap/dist/css/bootstrap.css.map",
|
||||
|
|
@ -508,12 +478,7 @@
|
|||
"Views/Shared/_ValidationScriptsPartial.cshtml",
|
||||
"wwwroot/favicon.ico",
|
||||
"wwwroot/css/site.css",
|
||||
"wwwroot/css/site.min.css",
|
||||
"wwwroot/images/banner1.svg",
|
||||
"wwwroot/images/banner2.svg",
|
||||
"wwwroot/images/banner3.svg",
|
||||
"wwwroot/js/site.js",
|
||||
"wwwroot/js/site.min.js",
|
||||
"wwwroot/lib/bootstrap/LICENSE",
|
||||
"wwwroot/lib/bootstrap/dist/css/bootstrap.css",
|
||||
"wwwroot/lib/bootstrap/dist/css/bootstrap.css.map",
|
||||
|
|
@ -573,12 +538,7 @@
|
|||
"Views/Shared/_ValidationScriptsPartial.cshtml",
|
||||
"wwwroot/favicon.ico",
|
||||
"wwwroot/css/site.css",
|
||||
"wwwroot/css/site.min.css",
|
||||
"wwwroot/images/banner1.svg",
|
||||
"wwwroot/images/banner2.svg",
|
||||
"wwwroot/images/banner3.svg",
|
||||
"wwwroot/js/site.js",
|
||||
"wwwroot/js/site.min.js",
|
||||
"wwwroot/lib/bootstrap/LICENSE",
|
||||
"wwwroot/lib/bootstrap/dist/css/bootstrap.css",
|
||||
"wwwroot/lib/bootstrap/dist/css/bootstrap.css.map",
|
||||
|
|
@ -639,12 +599,7 @@
|
|||
"Views/Shared/_ValidationScriptsPartial.cshtml",
|
||||
"wwwroot/favicon.ico",
|
||||
"wwwroot/css/site.css",
|
||||
"wwwroot/css/site.min.css",
|
||||
"wwwroot/images/banner1.svg",
|
||||
"wwwroot/images/banner2.svg",
|
||||
"wwwroot/images/banner3.svg",
|
||||
"wwwroot/js/site.js",
|
||||
"wwwroot/js/site.min.js",
|
||||
"wwwroot/lib/bootstrap/LICENSE",
|
||||
"wwwroot/lib/bootstrap/dist/css/bootstrap.css",
|
||||
"wwwroot/lib/bootstrap/dist/css/bootstrap.css.map",
|
||||
|
|
@ -705,12 +660,7 @@
|
|||
"Views/Shared/_ValidationScriptsPartial.cshtml",
|
||||
"wwwroot/favicon.ico",
|
||||
"wwwroot/css/site.css",
|
||||
"wwwroot/css/site.min.css",
|
||||
"wwwroot/images/banner1.svg",
|
||||
"wwwroot/images/banner2.svg",
|
||||
"wwwroot/images/banner3.svg",
|
||||
"wwwroot/js/site.js",
|
||||
"wwwroot/js/site.min.js",
|
||||
"wwwroot/lib/bootstrap/LICENSE",
|
||||
"wwwroot/lib/bootstrap/dist/css/bootstrap.css",
|
||||
"wwwroot/lib/bootstrap/dist/css/bootstrap.css.map",
|
||||
|
|
@ -770,12 +720,7 @@
|
|||
"Views/Shared/_ValidationScriptsPartial.cshtml",
|
||||
"wwwroot/favicon.ico",
|
||||
"wwwroot/css/site.css",
|
||||
"wwwroot/css/site.min.css",
|
||||
"wwwroot/images/banner1.svg",
|
||||
"wwwroot/images/banner2.svg",
|
||||
"wwwroot/images/banner3.svg",
|
||||
"wwwroot/js/site.js",
|
||||
"wwwroot/js/site.min.js",
|
||||
"wwwroot/lib/bootstrap/LICENSE",
|
||||
"wwwroot/lib/bootstrap/dist/css/bootstrap.css",
|
||||
"wwwroot/lib/bootstrap/dist/css/bootstrap.css.map",
|
||||
|
|
@ -836,12 +781,7 @@
|
|||
"Views/Shared/_ValidationScriptsPartial.cshtml",
|
||||
"wwwroot/favicon.ico",
|
||||
"wwwroot/css/site.css",
|
||||
"wwwroot/css/site.min.css",
|
||||
"wwwroot/images/banner1.svg",
|
||||
"wwwroot/images/banner2.svg",
|
||||
"wwwroot/images/banner3.svg",
|
||||
"wwwroot/js/site.js",
|
||||
"wwwroot/js/site.min.js",
|
||||
"wwwroot/lib/bootstrap/LICENSE",
|
||||
"wwwroot/lib/bootstrap/dist/css/bootstrap.css",
|
||||
"wwwroot/lib/bootstrap/dist/css/bootstrap.css.map",
|
||||
|
|
|
|||