-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPdnodeVote.csproj
More file actions
49 lines (42 loc) · 2.42 KB
/
Copy pathPdnodeVote.csproj
File metadata and controls
49 lines (42 loc) · 2.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UserSecretsId>aspnet-PdnodeVote-6d96068b-a8f7-473b-8af4-c4088152e25f</UserSecretsId>
<BlazorDisableThrowNavigationException>true</BlazorDisableThrowNavigationException>
<SatelliteResourceLanguages>en;zh-Hans</SatelliteResourceLanguages>
</PropertyGroup>
<PropertyGroup Condition="'$(RuntimeIdentifier)' != ''">
<PublishSingleFile>true</PublishSingleFile>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<EnableCompressionInSingleFile>true</EnableCompressionInSingleFile>
</PropertyGroup>
<ItemGroup>
<!-- Strictly isolate local development databases from production builds -->
<None Remove="Data\*.db*" />
<Content Remove="Data\*.db*" />
<None Update="Data\*.db*" CopyToPublishDirectory="Never" CopyToOutputDirectory="Never" />
<!-- Strictly exclude development configuration from production publish -->
<Content Update="appsettings.Development.json" CopyToPublishDirectory="Never" />
</ItemGroup>
<ItemGroup>
<Compile Remove="PdnodeVote.Client\**;tests\**;publish\**" />
<Content Remove="PdnodeVote.Client\**;tests\**;publish\**" />
<EmbeddedResource Remove="PdnodeVote.Client\**;tests\**;publish\**" />
<None Remove="PdnodeVote.Client\**;tests\**;publish\**" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="PdnodeVote.Client\PdnodeVote.Client.csproj" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="10.0.8" />
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="10.0.8" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="10.0.8" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="10.0.8" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.8" PrivateAssets="all" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="10.0.8" />
<PackageReference Include="MudBlazor" Version="9.9.0" />
<PackageReference Include="Net.Codecrete.QrCodeGenerator" Version="3.2.1" />
<PackageReference Include="SQLitePCLRaw.bundle_e_sqlite3" Version="3.0.3" />
<PackageReference Include="SQLitePCLRaw.core" Version="3.0.3" />
</ItemGroup>
</Project>