forked from ClosedXML/ClosedXML
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
46 lines (38 loc) · 1.76 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<Project>
<!-- Set the repository root into a variable -->
<PropertyGroup>
<SourceRoot>$(MSBuildThisFileDirectory)</SourceRoot>
</PropertyGroup>
<PropertyGroup>
<Version>0.97.1-preview</Version>
</PropertyGroup>
<!-- Set common properties regarding assembly information and nuget packages -->
<PropertyGroup>
<Product>ClosedXML</Product>
<Authors>Francois Botha, Jan Havlíček, Aleksei Pankratev, Manuel de Leon, Amir Ghezelbash</Authors>
<Owners>Francois Botha, Jan Havlíček, Aleksei Pankratev</Owners>
<Company />
<Copyright>MIT</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/ClosedXML/ClosedXML</PackageProjectUrl>
<PackageIcon>nuget-logo.png</PackageIcon>
<PackageTags>Excel OpenXml xlsx</PackageTags>
<PackageReleaseNotes>See https://github.com/ClosedXML/ClosedXML/releases/tag/$(productVersion)</PackageReleaseNotes>
<RepositoryUrl>https://github.com/ClosedXML/ClosedXML</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<!-- Sourcelink: https://github.com/dotnet/sourcelink/ -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<IncludeSource>true</IncludeSource>
<LangVersion>9.0</LangVersion>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<NoWarn>$(NoWarn);NU1605;CS1591</NoWarn>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>$(SourceRoot)/ClosedXML.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<!-- Additional properties that might not be applicable to a local dev environment -->
<PropertyGroup>
<DefineConstants>$(AppVeyor)</DefineConstants>
</PropertyGroup>
</Project>