-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLanguageTagsCreate.csproj
More file actions
37 lines (37 loc) · 1.62 KB
/
LanguageTagsCreate.csproj
File metadata and controls
37 lines (37 loc) · 1.62 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AnalysisLevel>latest-all</AnalysisLevel>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<InformationalVersion>1.0.0-pre</InformationalVersion>
<IsPackable>false</IsPackable>
<Nullable>enable</Nullable>
<OutputType>Exe</OutputType>
<PublishAot>false</PublishAot>
<RootNamespace>ptr727.LanguageTags.Create</RootNamespace>
<TargetFramework>net10.0</TargetFramework>
<Version>1.0.0</Version>
</PropertyGroup>
<PropertyGroup Condition="'$(PublishAot)' == 'true'">
<InvariantGlobalization>true</InvariantGlobalization>
<SelfContained>true</SelfContained>
<VerifyReferenceAotCompatibility>true</VerifyReferenceAotCompatibility>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\LanguageTags\LanguageTags.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Http.Resilience" Version="10.3.0" />
<PackageReference
Include="Microsoft.SourceLink.GitHub"
Version="10.0.103"
PrivateAssets="all"
/>
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.3" />
<PackageReference Include="Serilog.Enrichers.Thread" Version="4.0.0" />
<PackageReference Include="Serilog.Extensions.Logging" Version="10.0.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="6.1.1" />
<PackageReference Include="Serilog.Sinks.File" Version="7.0.0" />
<PackageReference Include="Serilog" Version="4.3.1" />
<PackageReference Include="System.CommandLine" Version="2.0.3" />
</ItemGroup>
</Project>