Skip to content
This repository has been archived by the owner on Jul 15, 2023. It is now read-only.

Commit

Permalink
Fiximg LicenseUrl is deprecated warning (#750)
Browse files Browse the repository at this point in the history
  • Loading branch information
conniey authored Jan 24, 2019
1 parent 3b5e2ef commit ecad209
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

<PropertyGroup>
<LicenseDocumentDirectory>$(MSBuildThisFileDirectory)\docs\LicenseTerms</LicenseDocumentDirectory>
<FullLicenseFile>$(MSBuildThisFileDirectory)\LICENSE</FullLicenseFile>
<FullLicenseFile>$(MSBuildThisFileDirectory)\LICENSE.txt</FullLicenseFile>
<OutputFullPath>$(MSBuildThisFileDirectory)</OutputFullPath>
<OutputDrop Condition=" '$(OutputDrop)' == '' ">$(OutputFullPath)bin\$(Configuration)\</OutputDrop>
<RawBinariesDropDirectory Condition=" '$(RawBinariesDropDirectory)' == '' ">$(OutputDrop)\raw\binaries</RawBinariesDropDirectory>
Expand Down Expand Up @@ -47,13 +47,17 @@
<!--NuGet properties-->
<PropertyGroup>
<Authors>Microsoft</Authors>
<PackageLicenseUrl>https://github.com/Microsoft/dotnet-apiport/blob/master/LICENSE</PackageLicenseUrl>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageProjectUrl>https://github.com/Microsoft/dotnet-apiport</PackageProjectUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageTags>.NET portability apiport</PackageTags>
<Copyright>Copyright 2017</Copyright>
</PropertyGroup>

<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)\LICENSE.txt" Pack="true" PackagePath=""/>
</ItemGroup>

<!-- Some of the project types do not have a pack target. This creates a default empty pack target that will be overridden in supported project types -->
<Target Name="Pack">
</Target>
Expand Down
File renamed without changes.

0 comments on commit ecad209

Please sign in to comment.