-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibs.targets
29 lines (29 loc) · 1.15 KB
/
libs.targets
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>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<DocumentationFile>$(BaseOutputPath)\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>Royal Code</Authors>
<Copyright>Royal Code Copyright © 2024</Copyright>
<RepositoryUrl>https://github.com/Royal-Code/SmartValidations</RepositoryUrl>
<RepositoryType>Git</RepositoryType>
<Configurations>Debug;Release</Configurations>
<PackageIcon>icon.png</PackageIcon>
<PackageLicenseExpression>AGPL-3.0-only</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<PropertyGroup>
<Version>$(SVVer)$(SVPreview)</Version>
<AssemblyVersion>$(SVVer)</AssemblyVersion>
<FileVersion>$(SVVer)</FileVersion>
</PropertyGroup>
<ItemGroup>
<None Include="../icon.png" Pack="true" PackagePath="/"/>
<None Include="../README.md" Pack="true" PackagePath="/"/>
</ItemGroup>
<PropertyGroup>
<DotNetCoreVersion Condition="'$(TargetFramework)' == 'net8'">8.0.0</DotNetCoreVersion>
</PropertyGroup>
</Project>