2016-10-29 08:04:20 +00:00
|
|
|
|
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" />
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>netcoreapp1.0</TargetFramework>
|
|
|
|
|
<DebugType>portable</DebugType>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
<PackageTargetFallback Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">$(PackageTargetFallback);dnxcore50;portable-net45+win8</PackageTargetFallback>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Include="**\*.cs" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">
|
|
|
|
|
<ProjectReference Include="..\..\src\dotnet\dotnet.csproj" />
|
|
|
|
|
<PackageReference Include="Microsoft.NETCore.App">
|
|
|
|
|
<Version>1.0.1</Version>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="Microsoft.Build.Runtime">
|
2016-10-31 23:16:39 +00:00
|
|
|
|
<Version>15.1.0-preview-000370-00</Version>
|
2016-10-29 08:04:20 +00:00
|
|
|
|
</PackageReference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.NET.Sdk">
|
2016-11-04 17:30:00 +00:00
|
|
|
|
<Version>1.0.0-alpha-20161104-2</Version>
|
2016-10-29 08:04:20 +00:00
|
|
|
|
<PrivateAssets>All</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">
|
|
|
|
|
<DefineConstants>$(DefineConstants);NETCOREAPP1_0</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
|
|
|
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
|
|
|
</Project>
|