2016-10-28 22:04:20 -10:00
|
|
|
|
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" />
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<VersionPrefix>1.0.0-preview3</VersionPrefix>
|
|
|
|
|
<TargetFramework>netcoreapp1.0</TargetFramework>
|
|
|
|
|
<WarningsAsErrors>true</WarningsAsErrors>
|
|
|
|
|
<AssemblyOriginatorKeyFile>../../tools/Key.snk</AssemblyOriginatorKeyFile>
|
|
|
|
|
<SignAssembly>true</SignAssembly>
|
|
|
|
|
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Include="**\*.cs" />
|
|
|
|
|
<EmbeddedResource Include="sdkdefaults.json" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\Microsoft.DotNet.Cli.Utils\Microsoft.DotNet.Cli.Utils.csproj" />
|
|
|
|
|
</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-28 22:04:20 -10:00
|
|
|
|
<PrivateAssets>All</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="Microsoft.Build">
|
2016-10-31 16:16:39 -07:00
|
|
|
|
<Version>15.1.0-preview-000370-00</Version>
|
2016-10-28 22:04:20 -10:00
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp">
|
|
|
|
|
<Version>2.0.0-beta6-60922-08</Version>
|
|
|
|
|
</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>
|