-
Notifications
You must be signed in to change notification settings - Fork 1
/
Directory.Build.props
29 lines (25 loc) · 1.2 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
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Label="Project Configuration">
<AssemblyVersion>3.2.0.0</AssemblyVersion>
<FileVersion>$(AssemblyVersion)</FileVersion>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<PropertyGroup Label="Package Configuration" Condition="'$(Configuration)' == 'Release'">
<Version>$(AssemblyVersion)</Version>
<Authors>gachris</Authors>
<RepositoryType>git</RepositoryType>
<Copyright>Copyright © 2024.</Copyright>
<PackageId>$(MSBuildProjectName)</PackageId>
<Product>$(MSBuildProjectName)</Product>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/gachris/iCloud.Dav</RepositoryUrl>
<PackageProjectUrl>https://github.com/gachris/iCloud.Dav/tree/master/src/$(MSBuildProjectName)</PackageProjectUrl>
<PackageOutputPath>$(MSBuildThisFileDirectory)nupkgs</PackageOutputPath>
</PropertyGroup>
<PropertyGroup Label="Sign Assembly">
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)SignAssemblyKey.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
</Project>