-
Notifications
You must be signed in to change notification settings - Fork 15
/
common.props
41 lines (36 loc) · 1.66 KB
/
common.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
30
31
32
33
34
35
36
37
38
39
40
41
<Project>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<Version>8.2.5</Version>
<!--<NoWarn>$(NoWarn);CS1591;CS0436</NoWarn>-->
<Company>Corsinvest Srl</Company>
<Authors>Corsinvest Srl</Authors>
<Copyright>Corsinvest Srl</Copyright>
<PackageProjectUrl>https://github.com/Corsinvest/cv4pve-api-dotnet</PackageProjectUrl>
<PackageTags>ProxmoxVE;Api,Client;Rest;Corsinvest;</PackageTags>
<PackageIcon>icon.png</PackageIcon>
<PackageLicenseExpression>GPL-3.0-only</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageOutputPath>..\..\..\.nupkgs\</PackageOutputPath>
<RepositoryType>Github</RepositoryType>
<RepositoryUrl>https://github.com/Corsinvest/cv4pve-api-dotnet</RepositoryUrl>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<OutputType>Library</OutputType>
<!-- Include symbol files (*.pdb) in the built .nupkg -->
<AllowedOutputExtensionsInPackageBuildOutputFolder>
$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\LICENSE" Pack="true" PackagePath="" />
<None Include="..\..\icon.png" Pack="true" PackagePath="" />
<none Include="..\..\README.md" Pack="true" PackagePath="" />
</ItemGroup>
<Target Name="SpicNSpan" AfterTargets="Clean">
<RemoveDir Directories="$(TargetDir)" />
<RemoveDir Directories="$(ProjectDir)$(BaseIntermediateOutputPath)" />
<RemoveDir Directories="$(ProjectDir)$(BaseOutputPath)" />
</Target>
</Project>