2016-10-27 18:46:43 -07:00
<?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 >
<TargetFrameworks > netstandard1.6;net451</TargetFrameworks>
<OutputType > Library</OutputType>
<PackageTargetFallback Condition= " '$(TargetFramework)' == 'netstandard1.6' " > $(PackageTargetFallback);portable-net45+win8;dnxcore50;netcoreapp1.0</PackageTargetFallback>
</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" >
2016-11-04 10:30:00 -07:00
<Version > 1.0.0-alpha-20161104-2</Version>
2016-10-27 18:46:43 -07:00
<PrivateAssets > All</PrivateAssets>
</PackageReference>
<PackageReference Include= "dotnet-desktop-and-portable" >
<Version > 1.0.0-*</Version>
</PackageReference>
</ItemGroup>
<ItemGroup Condition= " '$(TargetFramework)' == 'netstandard1.6' " >
<PackageReference Include= "NETStandard.Library" >
<Version > 1.6.0</Version>
</PackageReference>
</ItemGroup>
<ItemGroup Condition= " '$(TargetFramework)' == 'net451' " >
<Reference Include= "System" />
<Reference Include= "Microsoft.CSharp" />
</ItemGroup>
<ItemGroup >
<DotNetCliToolReference Include= "dotnet-dependency-tool-invoker" >
<Version > 1.0.0-*</Version>
</DotNetCliToolReference>
</ItemGroup>
<PropertyGroup Condition= " '$(TargetFramework)' == 'netstandard1.6' " >
<DefineConstants > $(DefineConstants);NETSTANDARD1_6</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition= " '$(TargetFramework)' == 'net451' " >
<DefineConstants > $(DefineConstants);NET451</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition= " '$(Configuration)' == 'Release' " >
<DefineConstants > $(DefineConstants);RELEASE</DefineConstants>
</PropertyGroup>
<Import Project= "$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>