-
Notifications
You must be signed in to change notification settings - Fork 1
/
Directory.Build.props
28 lines (21 loc) · 967 Bytes
/
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
<Project>
<PropertyGroup>
<AppTargetFramework Condition="$(AppTargetFramework) == ''">net8.0</AppTargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Authors>Rafael Lillo</Authors>
<PackageIcon>icon.png</PackageIcon>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<PackageProjectUrl>https://github.com/lillo42/cassowary-csharp</PackageProjectUrl>
<RepositoryUrl>https://github.com/lillo42/cassowary-csharp.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<None Include="../../icon.png" Pack="true" PackagePath="/"/>
</ItemGroup>
</Project>