-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
22 lines (19 loc) · 841 Bytes
/
Directory.Build.props
File metadata and controls
22 lines (19 loc) · 841 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Project>
<PropertyGroup>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Authors>Andreu Codina</Authors>
<PackageIcon>logo.jpg</PackageIcon>
<PackageReadmeFile>crossvalidation-nuget-readme.md</PackageReadmeFile>
<Description>State-of-the-art .NET library to handle errors and validate data.</Description>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>12</LangVersion>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\docs\logo.jpg" Pack="true" Visible="false" PackagePath="" />
<None Include="..\..\docs\crossvalidation-nuget-readme.md" Visible="false" Pack="true" PackagePath="" />
</ItemGroup>
</Project>