-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDirectory.Build.props
29 lines (24 loc) · 1.21 KB
/
Directory.Build.props
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>
<PropertyGroup Label="Packaging">
<Version>1.0.0</Version>
<Copyright>Copyright (C) 2023 O21 contributors; Copyright (C) 2023 Oddities contributors</Copyright>
<Authors>ForNeVeR</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/ForNeVeR/Oddities</PackageProjectUrl>
<RepositoryUrl>https://github.com/ForNeVeR/Oddities.git</RepositoryUrl>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup Label="Packaging" Condition=" $(IsPackable) == 'true' ">
<None Include="..\README.md" Pack="true" PackagePath="\" />
<None Include="..\LICENSE.md" Pack="true" PackagePath="\" />
</ItemGroup>
<PropertyGroup Condition=" '$(MSBuildProjectExtension)' == '.csproj' ">
<LangVersion>11</LangVersion>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>