-
Notifications
You must be signed in to change notification settings - Fork 18
/
Directory.Build.Props
26 lines (21 loc) · 1.16 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
<Project>
<Import Project="version.props" />
<PropertyGroup>
<Authors>Andrew Lock</Authors>
<Product>dotnet-config2json</Product>
<Copyright>Copyright © Andrew Lock</Copyright>
<NeutralLanguage>en-GB</NeutralLanguage>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageLicenseUrl>https://spdx.org/licenses/MIT.html</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/andrewlock/dotnet-config2json</PackageProjectUrl>
<RepositoryUrl>https://github.com/andrewlock/dotnet-config2json.git</RepositoryUrl>
<PackageReleaseNotes>See $(PackageProjectUrl)/blob/master/CHANGELOG.md#v$(VersionPrefix.Replace('.','')) for release notes.</PackageReleaseNotes>
<RepositoryType>git</RepositoryType>
<IsPackable>false</IsPackable>
<NoPackageAnalysis>true</NoPackageAnalysis>
<LangVersion>7.2</LangVersion>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<BaseIntermediateOutputPath>$(MSBuildThisFileDirectory).build\obj\$(MSBuildProjectName)</BaseIntermediateOutputPath>
<BaseOutputPath>$(MSBuildThisFileDirectory).build\bin\$(MSBuildProjectName)</BaseOutputPath>
</PropertyGroup>
</Project>