-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove extra TargetFrameworks from NuGet test project
- Loading branch information
1 parent
2757f1a
commit 42aaa9f
Showing
4 changed files
with
15 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -143,13 +143,6 @@ stages: | |
git config --replace-all user.email "[email protected]" | ||
git config --replace-all user.name "Azure DevOps" | ||
- task: DotNetCoreCLI@2 | ||
displayName: 'Build' | ||
inputs: | ||
command: build | ||
arguments: '--configuration Release /p:ContinuousIntegrationBuild=true' | ||
projects: './src/FileParserSolution.sln' | ||
|
||
- task: DotNetCoreCLI@2 | ||
displayName: 'Modify project version' | ||
condition: ne(variables['PackageVersion'], '') | ||
|
@@ -158,6 +151,13 @@ stages: | |
arguments: '--configuration Release /t:ReplaceVersion /p:VersionTag=$(PackageVersion)' | ||
projects: '**/FileParser.csproj' | ||
|
||
- task: DotNetCoreCLI@2 | ||
displayName: 'Build' | ||
inputs: | ||
command: build | ||
arguments: '--configuration Release /p:ContinuousIntegrationBuild=true' | ||
projects: './src/FileParserSolution.sln' | ||
|
||
- task: DotNetCoreCLI@2 | ||
displayName: 'Generate NuGet package' | ||
inputs: | ||
|
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