-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathClient.csproj
More file actions
34 lines (29 loc) · 1.37 KB
/
Client.csproj
File metadata and controls
34 lines (29 loc) · 1.37 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
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<RootNamespace>BlazorApp.Client</RootNamespace>
</PropertyGroup>
<!--<PropertyGroup Condition="'$(Configuration)'=='Release'">
<PublishTrimmed>true</PublishTrimmed>
<TrimMode>link</TrimMode>
<EnableAnalyzer>true</EnableAnalyzer>
<BlazorEnableLinkerAnalyzer>true</BlazorEnableLinkerAnalyzer>
<InvariantGlobalization>true</InvariantGlobalization>
<BlazorWebAssemblyPreserveCollationData>false</BlazorWebAssemblyPreserveCollationData>
<BlazorWebAssemblyPreserveCultureData>false</BlazorWebAssemblyPreserveCultureData>
<StripDebugSymbols>true</StripDebugSymbols>
<DebugType>none</DebugType>
<CompressionEnabled>true</CompressionEnabled>
<BlazorWebAssemblyEnableAOT>true</BlazorWebAssemblyEnableAOT>
<BlazorWebAssemblyLazyLoadAssemblies>true</BlazorWebAssemblyLazyLoadAssemblies>
</PropertyGroup>-->
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.0" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Shared\Shared.csproj" />
</ItemGroup>
</Project>