2016-12-20 21:29:45 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2016-12-02 04:10:42 +00:00
|
|
|
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
|
|
|
|
|
|
2016-10-29 08:04:20 +00:00
|
|
|
|
<PropertyGroup>
|
2016-12-05 22:47:16 +00:00
|
|
|
|
<VersionPrefix>1.0.0-preview5</VersionPrefix>
|
2016-10-29 08:04:20 +00:00
|
|
|
|
<TargetFramework>netcoreapp1.0</TargetFramework>
|
|
|
|
|
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
|
2016-11-10 18:19:37 +00:00
|
|
|
|
<PackageTargetFallback Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">$(PackageTargetFallback);dotnet5.4</PackageTargetFallback>
|
2016-10-29 08:04:20 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="RunCsc.sh;RunCsc.cmd">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.NETCore.App">
|
|
|
|
|
<Version>1.0.1</Version>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="Microsoft.Build.Runtime">
|
2016-12-02 04:10:42 +00:00
|
|
|
|
<Version>$(CLI_MSBuild_Version)</Version>
|
2016-10-29 08:04:20 +00:00
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.Build.Tasks">
|
|
|
|
|
<Version>2.0.0-beta6-60922-08</Version>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="NuGet.Build.Tasks">
|
2016-12-03 03:19:54 +00:00
|
|
|
|
<Version>4.0.0-rc2</Version>
|
2016-10-29 08:04:20 +00:00
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="Microsoft.TestPlatform.CLI">
|
2016-12-28 18:17:33 +00:00
|
|
|
|
<Version>$(CLI_TestPlatform_Version)</Version>
|
2016-10-29 08:04:20 +00:00
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="Microsoft.TestPlatform.Build">
|
2016-12-28 18:17:33 +00:00
|
|
|
|
<Version>$(CLI_TestPlatform_Version)</Version>
|
2016-10-29 08:04:20 +00:00
|
|
|
|
</PackageReference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">
|
|
|
|
|
<ProjectReference Include="..\dotnet\dotnet.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Microsoft.DotNet.Archive\Microsoft.DotNet.Archive.csproj" />
|
2016-12-07 21:49:15 +00:00
|
|
|
|
<ProjectReference Include="..\Microsoft.DotNet.Cli.Sln.Internal\Microsoft.DotNet.Cli.Sln.Internal.csproj" />
|
2016-10-29 08:04:20 +00:00
|
|
|
|
<ProjectReference Include="..\Microsoft.DotNet.Cli.Utils\Microsoft.DotNet.Cli.Utils.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Microsoft.DotNet.Configurer\Microsoft.DotNet.Configurer.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Microsoft.DotNet.InternalAbstractions\Microsoft.DotNet.InternalAbstractions.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Microsoft.DotNet.ProjectJsonMigration\Microsoft.DotNet.ProjectJsonMigration.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Microsoft.DotNet.TestFramework\Microsoft.DotNet.TestFramework.csproj" />
|
|
|
|
|
<ProjectReference Include="..\tool_csc\tool_csc.csproj" />
|
|
|
|
|
<ProjectReference Include="..\tool_msbuild\tool_msbuild.csproj" />
|
|
|
|
|
<ProjectReference Include="..\tool_nuget\tool_nuget.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
|
|
|
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
</Project>
|