Skip to content

Commit

Permalink
Downgrade Test.Sdk to net40 and fix casing (#1860)
Browse files Browse the repository at this point in the history
  • Loading branch information
ViktorHofer authored and singhsarab committed Dec 10, 2018
1 parent 8601bd8 commit 76fd0f5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions scripts/build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -566,13 +566,13 @@ function Create-NugetPackages
"TestPlatform.CLI.nuspec",
"TestPlatform.Build.nuspec",
"TestPlatform.Extensions.TrxLogger.nuspec",
"Microsoft.Net.Test.Sdk.nuspec",
"Microsoft.NET.Test.Sdk.nuspec",
"Microsoft.TestPlatform.nuspec",
"Microsoft.TestPlatform.Portable.nuspec",
"Microsoft.CodeCoverage.nuspec")

$targetFiles = @("Microsoft.CodeCoverage.targets")
$propFiles = @("Microsoft.Net.Test.Sdk.props", "Microsoft.CodeCoverage.props")
$propFiles = @("Microsoft.NET.Test.Sdk.props", "Microsoft.CodeCoverage.props")
$contentDirs = @("netcoreapp", "netfx")

# Nuget pack analysis emits warnings if binaries are packaged as content. It is intentional for the below packages.
Expand Down
4 changes: 2 additions & 2 deletions src/package/nuspec/Microsoft.NET.Test.Sdk.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@
</metadata>
<files>
<file src="netcoreapp\*" target="build\netcoreapp1.0\" />
<file src="netfx\*" target="build\net45\" />
<file src="netfx\*" target="build\net40\" />

<file src="Microsoft.NET.Test.Sdk.props" target="buildMultiTargeting\" />
<file src="Microsoft.NET.Test.Sdk.props" target="build\netcoreapp1.0\" />
<file src="Microsoft.NET.Test.Sdk.props" target="build\net45\" />
<file src="Microsoft.NET.Test.Sdk.props" target="build\net40\" />
<file src="Microsoft.NET.Test.Sdk.props" target="build\uap10.0\" />

</files>
Expand Down

0 comments on commit 76fd0f5

Please sign in to comment.