-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
35 lines (33 loc) · 1.71 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
<Project>
<PropertyGroup>
<Product>Zig Toolsets</Product>
<Description>The Zig compiler and standard library packaged for use in MSBuild.</Description>
<Company>Vezel</Company>
<Authors>Zig Contributors, $(Company) Contributors</Authors>
<Copyright>Copyright © $(Authors)</Copyright>
<ZigVersion>0.13.0</ZigVersion>
<ToolsetVersion>1</ToolsetVersion>
<Version>$(ZigVersion).$(ToolsetVersion)</Version>
</PropertyGroup>
<PropertyGroup>
<Configuration>Release</Configuration>
<EnablePackageValidation>true</EnablePackageValidation>
<IsPackable>false</IsPackable>
<IsPublishable>false</IsPublishable>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<PackageIcon>zig.png</PackageIcon>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://ziglang.org</PackageProjectUrl>
<PackageReadmeFile>PACKAGE.md</PackageReadmeFile>
<PackageReleaseNotes>https://ziglang.org/download/$(ZigVersion)/release-notes.html</PackageReleaseNotes>
<RepositoryUrl>https://github.com/vezel-dev/zig-toolsets.git</RepositoryUrl>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup>
<UseArtifactsOutput>true</UseArtifactsOutput>
<ArtifactsPath>$(MSBuildThisFileDirectory)out</ArtifactsPath>
<ArtifactsProjectName>$([MSBuild]::MakeRelative('$(MSBuildThisFileDirectory)', '$(MSBuildProjectDirectory)'))</ArtifactsProjectName>
<ArtifactsPublishOutputName>pub</ArtifactsPublishOutputName>
<ArtifactsPackageOutputName>pkg</ArtifactsPackageOutputName>
</PropertyGroup>
</Project>