Skip to content
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

Added OutputType to Microsoft.NET.Test.Sdk.target #310

Merged
merged 8 commits into from
Jan 6, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions scripts/build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,9 @@ function Create-NugetPackages
Copy-Item $tpSrcDir\$file $stagingDir -Force
}

# Copy and rename props file.
Copy-Item $tpSrcDir\"Microsoft.Net.Test.Sdk_props" $stagingDir\"Microsoft.Net.Test.Sdk.props" -Force

# Copy over empty and third patry notice file
Copy-Item $tpSrcDir\package\"_._" $stagingDir -Force
Copy-Item $tpSrcDir\package\"ThirdPartyNotices.txt" $stagingDir -Force
Expand Down
1 change: 1 addition & 0 deletions src/Microsoft.NET.Test.Sdk.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
</dependencies>
</metadata>
<files>
<file src="Microsoft.NET.Test.Sdk.props" target="build\netcoreapp1.0\" />
<file src="Microsoft.NET.Test.Sdk.targets" target="build\netcoreapp1.0\" />
<file src="Microsoft.NET.Test.Sdk.targets" target="build\net45\" />
</files>
Expand Down
18 changes: 18 additions & 0 deletions src/Microsoft.NET.Test.Sdk_props
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<!--
***********************************************************************************************
Microsoft.NET.Test.Sdk.props

WARNING: DO NOT MODIFY this file unless you are knowledgeable about MSBuild and have
created a backup copy. Incorrect changes to this file will make it
impossible to load or build your projects from the command-line or the IDE.

Copyright (c) .NET Foundation. All rights reserved.
***********************************************************************************************
-->

<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<!-- Output type for dotnet core test project should be exe. For full CLR it is Library by default. -->
<OutputType>Exe</OutputType>
</PropertyGroup>
</Project>