We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
For netcoreapp1.0 TFM, Output Type should be Exe. Corresponding change should be made in https://github.com/dotnet/sdk repo here
<OutputType Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">Exe</OutputType>
The text was updated successfully, but these errors were encountered:
@harshjain2 the default template already has the following
<OutputType>Exe</OutputType> <TargetFramework>netcoreapp1.0</TargetFramework>
Did you mean add support for net46 as well?
<OutputType Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">Exe</OutputType> <OutputType Condition=" '$(TargetFramework)' == 'net46' ">Library</OutputType> <TargetFrameworks>net46;netcoreapp1.0</TargetFrameworks>
Sorry, something went wrong.
Closing this in favor of #287. We'll add conditional OutputType to Microsoft.NET.Test.Sdk.
No branches or pull requests
Description
Change
<OutputType Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">Exe</OutputType>
The text was updated successfully, but these errors were encountered: