5bbfbfeeed
* update nuget to 4.0.0-rc3 and sdk to 1.0.0-alpha-20170105-5 * Modifying restore project.json to use the project.json stage0 CLI instead of restore-projectjson command. * add a nuget dependency so migrated project has packageref and generates an assets file on restore
42 lines
No EOL
2.4 KiB
XML
42 lines
No EOL
2.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
|
|
|
|
<PropertyGroup>
|
|
<VersionPrefix>1.0.0-preview5</VersionPrefix>
|
|
<TargetFramework>netcoreapp1.0</TargetFramework>
|
|
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
|
|
<PackageTargetFallback Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">$(PackageTargetFallback);dotnet5.4</PackageTargetFallback>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NETCore.App">
|
|
<Version>1.0.3</Version>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.Build.Runtime">
|
|
<Version>$(CLI_MSBuild_Version)</Version>
|
|
</PackageReference>
|
|
<PackageReference Include="NuGet.Build.Tasks">
|
|
<Version>4.0.0-rc3</Version>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.TestPlatform.CLI">
|
|
<Version>$(CLI_TestPlatform_Version)</Version>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.TestPlatform.Build">
|
|
<Version>$(CLI_TestPlatform_Version)</Version>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
<ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">
|
|
<ProjectReference Include="..\dotnet\dotnet.csproj" />
|
|
<ProjectReference Include="..\Microsoft.DotNet.Archive\Microsoft.DotNet.Archive.csproj" />
|
|
<ProjectReference Include="..\Microsoft.DotNet.Cli.Sln.Internal\Microsoft.DotNet.Cli.Sln.Internal.csproj" />
|
|
<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_msbuild\tool_msbuild.csproj" />
|
|
<ProjectReference Include="..\tool_nuget\tool_nuget.csproj" />
|
|
</ItemGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants>
|
|
</PropertyGroup>
|
|
</Project> |