forked from dotnet-outdated/dotnet-outdated
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
27 lines (22 loc) · 1.24 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
<Project>
<Import Project="version.props" />
<PropertyGroup>
<Authors>Jerrie Pelser</Authors>
<Product>dotnet-outdated</Product>
<Copyright>Copyright © Jerrie Pelser</Copyright>
<NeutralLanguage>en-US</NeutralLanguage>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageLicenseUrl>https://opensource.org/licenses/MIT</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/jerriep/dotnet-outdated</PackageProjectUrl>
<RepositoryUrl>https://github.com/jerriep/dotnet-outdated.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>Latest</LangVersion>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<GenerateFullPaths Condition="'$(VSCODE_PID)' != ''">true</GenerateFullPaths>
<BaseIntermediateOutputPath>$(MSBuildThisFileDirectory).build\obj\$(MSBuildProjectName)</BaseIntermediateOutputPath>
<BaseOutputPath>$(MSBuildThisFileDirectory).build\bin\$(MSBuildProjectName)</BaseOutputPath>
</PropertyGroup>
</Project>