-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
25 lines (22 loc) · 1.03 KB
/
Directory.Build.props
File metadata and controls
25 lines (22 loc) · 1.03 KB
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
<Project>
<PropertyGroup>
<!-- Your Output & Symbol Settings -->
<Version>1.1.0-preview</Version>
<PackageOutputPath>$(MSBuildThisFileDirectory)\NugetProjects\Package</PackageOutputPath>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<IsPackable>true</IsPackable>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<!-- NEW: NuGet Package Metadata -->
<Authors>Thomas Betterly</Authors>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<RepositoryUrl>https://github.com/ShadowKnightMK4/ButlerSDKPreview-GoldSource</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<!-- NEW: Tells the NuGet package which file to use as the README -->
<PackageReadmeFile>NUGET_README.md</PackageReadmeFile>
</PropertyGroup>
<!-- NEW: Physically bundles the README file from your root folder into every .nupkg file -->
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)NUGET_README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>