forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This includes simplifying dotnet-deb-tool from a tool package to an ordinary project. This avoids two complications: tool packages used by DotNetCliToolReference can only target .NET Core 2.2 and below, and the Pack requirements are more involved with the new SDK. Adds some new '<project> -> <artifact>' log lines. It was previously hard to tell what the build was producing; this output clarifies in the usual MSBuild project style. Commit migrated from dotnet/core-setup@58efb31
- Loading branch information
Showing
10 changed files
with
75 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 4 additions & 6 deletions
10
tools-local/setuptools/dotnet-deb-tool/dotnet-deb-tool.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,23 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<VersionPrefix>2.1.0</VersionPrefix> | ||
<TargetFramework>netcoreapp2.0</TargetFramework> | ||
<TargetFramework>netcoreapp3.0</TargetFramework> | ||
<AssemblyName>dotnet-deb-tool</AssemblyName> | ||
<OutputType>Exe</OutputType> | ||
<PackageId>dotnet-deb-tool</PackageId> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Compile Remove="tool\**\*" /> | ||
<Compile Include="..\..\..\src\test\TestUtils\ArgumentEscaper.cs" /> | ||
|
||
<Content Include="tool\**"> | ||
<Content Include="tool\**" CopyToOutputDirectory="PreserveNewest"> | ||
<PackagePath>lib/$(TargetFramework)/tool</PackagePath> | ||
<Pack>true</Pack> | ||
</Content> | ||
<Content Include="prefercliruntime"> | ||
<Content Include="prefercliruntime" CopyToOutputDirectory="PreserveNewest"> | ||
<Pack>true</Pack> | ||
<PackagePath></PackagePath> | ||
</Content> | ||
</ItemGroup> | ||
</ItemGroup> | ||
|
||
</Project> |