-
-
Notifications
You must be signed in to change notification settings - Fork 172
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add netcoreapp3.0 global tool #315
Conversation
@@ -1,8 +1,6 @@ | |||
<Project> | |||
<PropertyGroup> | |||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | |||
<BaseIntermediateOutputPath>$(MSBuildThisFileDirectory)..\obj\$(MSBuildProjectName)\</BaseIntermediateOutputPath> | |||
<OutputPath>$(MSBuildThisFileDirectory)..\bin\$(MSBuildProjectName)\$(Configuration)\</OutputPath> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This combined with TargetFrameworks does not work. It is easier to just dotnet publish
.
<RootNamespace>Nerdbank.GitVersioning.Tool</RootNamespace> | ||
<Description>A .NET Core Tool that can install, read and set version information based on git history, using Nerdbank.GitVersioning.</Description> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="NuGet.PackageManagement" Version="4.9.3" NoWarn="NU1701" /> | ||
<PackageReference Include="NuGet.Resolver" Version="4.9.3" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These were only used by GetLatestPackageVersionAsync
. They are netframework only and cause a bunch of dependency problems. Hopefully there is an easier way with NuGet 5.0.
This reverts commit 4222f4d.
Use `-LiteralPath` instead of `-Path` in ps1 scripts
Based on #279 from @onovotny, but uses latest preview 3 and sets the global.json just on the Azure Pipelines build.