-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTextFileEncodingConverter.csproj
More file actions
29 lines (25 loc) · 1.25 KB
/
TextFileEncodingConverter.csproj
File metadata and controls
29 lines (25 loc) · 1.25 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
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<InvariantGlobalization>true</InvariantGlobalization>
<BlazorEnableTimeZoneSupport>false</BlazorEnableTimeZoneSupport>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BlazorWasmPreRendering.Build" Version="5.0.1" />
<PackageReference Include="KristofferStrube.Blazor.FileSystemAccess" Version="3.2.2" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="9.0.3" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="9.0.3" PrivateAssets="all" />
<PackageReference Include="PublishSPAforGitHubPages.Build" Version="3.0.0" />
</ItemGroup>
<!--
This is required to show the display name of the text encodings properly.
-->
<Target Name="_DisableUseSystemResourceKeys" BeforeTargets="PrepareForILLink">
<ItemGroup>
<RuntimeHostConfigurationOption Remove="System.Resources.UseSystemResourceKeys" />
<RuntimeHostConfigurationOption Include="System.Resources.UseSystemResourceKeys" Value="false" Trim="true" />
</ItemGroup>
</Target>
</Project>