-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNuget.props
More file actions
34 lines (29 loc) · 1.22 KB
/
Copy pathNuget.props
File metadata and controls
34 lines (29 loc) · 1.22 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
26
27
28
29
30
31
32
33
34
<Project>
<PropertyGroup>
<EnableDefaultNoneItems>false</EnableDefaultNoneItems>
</PropertyGroup>
<PropertyGroup>
<Version>1.0.0-dev.8</Version>
<InformationalVersion>$(Version)</InformationalVersion>
<PackageVersion>$(Version)</PackageVersion>
<NuGetVersion>$(Version)</NuGetVersion>
</PropertyGroup>
<!-- NuGet Package Shared -->
<PropertyGroup>
<Authors>ionite34</Authors>
<Copyright>ionite34</Copyright>
<NeutralLanguage>en-US</NeutralLanguage>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/ionite34/MinimalApiMapper</RepositoryUrl>
<PackageProjectUrl>https://github.com/ionite34/MinimalApiMapper</PackageProjectUrl>
<PackageReleaseNotes>https://github.com/ionite34/MinimalApiMapper/blob/main/CHANGELOG.md</PackageReleaseNotes>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<!-- Apparently this borks packing -->
<!--<GeneratePackageOnBuild>true</GeneratePackageOnBuild>-->
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<None Include="$(SolutionDir)/README.md" Pack="true" PackagePath="/"/>
</ItemGroup>
</Project>