/ src / GradeView / GradeView.csproj
GradeView.csproj
 1  <Project Sdk="Microsoft.NET.Sdk.Web">
 2    <PropertyGroup>
 3      <TargetFramework>netstandard2.0</TargetFramework>
 4      <RestoreAdditionalProjectSources>
 5        https://dotnet.myget.org/F/aspnetcore-dev/api/v3/index.json;
 6        https://dotnet.myget.org/F/blazor-dev/api/v3/index.json;
 7      </RestoreAdditionalProjectSources>
 8      <LangVersion>7.3</LangVersion>
 9      <RazorLangVersion>3.0</RazorLangVersion>
10      <!--<RootNamespace>GradeView</RootNamespace>-->
11     
12    </PropertyGroup>
13    <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
14      <GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies>
15      <DebugType>embedded</DebugType>
16      <DebugSymbols>true</DebugSymbols>
17    </PropertyGroup>
18    <ItemGroup>
19      <Content Remove="Pages\_Host.cshtml" />
20    </ItemGroup>
21  
22    <ItemGroup>
23      <PackageReference Include="Microsoft.AspNetCore.Blazor" Version="3.0.0-preview7.19365.7" />
24      <PackageReference Include="Microsoft.AspNetCore.Blazor.Build" Version="3.0.0-preview7.19365.7" PrivateAssets="all" />
25      <PackageReference Include="Microsoft.AspNetCore.Blazor.DevServer" Version="3.0.0-preview7.19365.7" PrivateAssets="all" />
26    </ItemGroup>
27  
28    <ItemGroup>
29      <Content Update="wwwroot\404.html">
30        <CopyToOutputDirectory>Always</CopyToOutputDirectory>
31      </Content>
32      <Content Update="wwwroot\blazorServiceWorker.js">
33        <CopyToOutputDirectory>Always</CopyToOutputDirectory>
34      </Content>
35      <Content Update="wwwroot\blazorSWRegister.js">
36        <CopyToOutputDirectory>Always</CopyToOutputDirectory>
37      </Content>
38      <Content Update="wwwroot\CNAME">
39        <CopyToOutputDirectory>Always</CopyToOutputDirectory>
40      </Content>
41      <Content Update="wwwroot\favicon.ico">
42        <CopyToOutputDirectory>Always</CopyToOutputDirectory>
43      </Content>
44      <Content Update="wwwroot\icons\icon-192-192.png">
45        <CopyToOutputDirectory>Always</CopyToOutputDirectory>
46      </Content>
47      <Content Update="wwwroot\icons\icon-512-512.png">
48        <CopyToOutputDirectory>Always</CopyToOutputDirectory>
49      </Content>
50      <Content Update="wwwroot\index.html">
51        <CopyToOutputDirectory>Always</CopyToOutputDirectory>
52      </Content>
53      <Content Update="wwwroot\manifest.json">
54        <CopyToOutputDirectory>Always</CopyToOutputDirectory>
55      </Content>
56      <Content Update="wwwroot\nojekyll">
57        <CopyToOutputDirectory>Always</CopyToOutputDirectory>
58      </Content>
59    </ItemGroup>
60  
61  </Project>