Created
March 17, 2017 20:38
-
-
Save aspyct/5e361325141cd4bb72e93a4dd45f8ed5 to your computer and use it in GitHub Desktop.
Install non-netstandard libs in a .net core project
This file contains hidden or 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
<Project Sdk="Microsoft.NET.Sdk"> | |
<PropertyGroup> | |
<OutputType>Exe</OutputType> | |
<TargetFramework>netcoreapp1.1</TargetFramework> | |
<PackageTargetFallback>portable-net45+win8+wp8+wpa81</PackageTargetFallback> | |
</PropertyGroup> | |
<ItemGroup> | |
<PackageReference Include="Microsoft.CodeAnalysis.Compilers" Version="2.0.0" /> | |
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="2.0.0" /> | |
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="2.0.0" /> | |
</ItemGroup> | |
</Project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment