29 lines
1.2 KiB
XML
29 lines
1.2 KiB
XML
|
<?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>
|
|||
|
<OutputType>Library</OutputType>
|
|||
|
<TargetFrameworks>net451;netcoreapp1.0</TargetFrameworks>
|
|||
|
</PropertyGroup>
|
|||
|
<ItemGroup>
|
|||
|
<Compile Include="**\*.cs" />
|
|||
|
<EmbeddedResource Include="**\*.resx" />
|
|||
|
<PackageReference Include="Microsoft.NET.Sdk">
|
|||
|
<Version>1.0.0-alpha-20161104-2</Version>
|
|||
|
<PrivateAssets>All</PrivateAssets>
|
|||
|
</PackageReference>
|
|||
|
</ItemGroup>
|
|||
|
<ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">
|
|||
|
<PackageReference Include="Microsoft.NETCore.App">
|
|||
|
<Version>1.0.1</Version>
|
|||
|
</PackageReference>
|
|||
|
</ItemGroup>
|
|||
|
<PropertyGroup Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">
|
|||
|
<DefineConstants>$(DefineConstants);NETCOREAPP1_0</DefineConstants>
|
|||
|
</PropertyGroup>
|
|||
|
<PropertyGroup Condition=" '$(TargetFramework)' == 'net451' ">
|
|||
|
<DefineConstants>$(DefineConstants);NET451</DefineConstants>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|||
|
</Project>
|