40c34f891a
* Updating the Microsoft.Net.Sdk & Microsoft.Net.Sdk.Web versions * Fixed merge conflicts. Had to re-update the Sdk version in one place. * re-migrate dotnet.dll * Revert Performance Test Projects * Fix test test * Add missing WithRuntime * Disable failing test test
31 lines
No EOL
1.5 KiB
XML
Executable file
31 lines
No EOL
1.5 KiB
XML
Executable file
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" />
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard1.5</TargetFramework>
|
|
<NoWarn>$(NoWarn);CS1591</NoWarn>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<DocumentationFile>$(OutputPath)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Compile Include="**\*.cs" Exclude="bin\**;obj\**;**\*.xproj;packages\**" />
|
|
<EmbeddedResource Include="**\*.resx" Exclude="bin\**;obj\**;**\*.xproj;packages\**" />
|
|
<EmbeddedResource Include="compiler\resources\**\*" Exclude="bin\**;obj\**;**\*.xproj;packages\**" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NET.Sdk">
|
|
<Version>1.0.0-alpha-20161102-2</Version>
|
|
<PrivateAssets>All</PrivateAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="NETStandard.Library">
|
|
<Version>1.6.0</Version>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
<PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard1.5' ">
|
|
<DefineConstants>$(DefineConstants);NETSTANDARD1_5</DefineConstants>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants>
|
|
</PropertyGroup>
|
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
</Project> |