dotnet/msbuild

Disambiguate TargetFrameworkVersion and TargetFamework in help

Open

#1805 aperta il 7 mar 2017

Vedi su GitHub
 (2 commenti) (0 reazioni) (0 assegnatari)C# (1364 fork)batch import
help wantedtriaged

Metriche repository

Star
 (5062 star)
Metriche merge PR
 (Merge medio 11g 7h) (125 PR mergiate in 30 g)

Descrizione

(moved from dotnet/cli#5921)

The command line help suggests:

:: v1.6 is .NET Standard TFM
dotnet pack /p:TargetFrameworkVersion=v1.6 .

should work, however it errors out. Whereas TargetFramework switch does work:

dotnet pack /p:TargetFramework=v1.6 .

The ask is to clarify the difference in help (perhaps with a core-specific example):

dotnet msbuild -h
[snip]
        MSBuild MyApp.csproj /t:Clean
                             /p:Configuration=Debug;TargetFrameworkVersion=v3.5
::                                                   ^^^^^^^^^^  this one

Guida contributor