-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLanguageTagsCreate.csproj
More file actions
34 lines (34 loc) · 1.48 KB
/
LanguageTagsCreate.csproj
File metadata and controls
34 lines (34 loc) · 1.48 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">
<PropertyGroup>
<AnalysisLevel>latest-all</AnalysisLevel>
<AssemblyName>LanguageTagsCreate</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<Authors>Pieter Viljoen</Authors>
<Company>Pieter Viljoen</Company>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<Copyright>Pieter Viljoen</Copyright>
<Description>LanguageTags create utility</Description>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<FileVersion>1.0.0.0</FileVersion>
<IncludeSymbols>true</IncludeSymbols>
<NeutralLanguage>en</NeutralLanguage>
<Nullable>enable</Nullable>
<OutputType>Exe</OutputType>
<PackageId>ptr727.LanguageTags.Create</PackageId>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/ptr727/LanguageTags</PackageProjectUrl>
<PublishAot>true</PublishAot>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<RootNamespace>ptr727.LanguageTags.Create</RootNamespace>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<TargetFramework>net10.0</TargetFramework>
<Version>1.0.0.0</Version>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\LanguageTags\LanguageTags.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.102" PrivateAssets="All" />
<PackageReference Include="Serilog.Sinks.Console" Version="6.1.1" />
</ItemGroup>
</Project>