4c55fb6211
* update nuget and sdk rtm-2241 * Applying the no packagereference workaround. * Fix merge issue * add comments for restore related workarounds added in test assets
32 lines
1.2 KiB
XML
32 lines
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
|
|
<PropertyGroup>
|
|
<VersionPrefix>1.0.0-rc</VersionPrefix>
|
|
<TargetFrameworks>netcoreapp1.0;net451</TargetFrameworks>
|
|
<AssemblyName>dotnet-desktop-and-portable</AssemblyName>
|
|
<OutputType>Exe</OutputType>
|
|
<RuntimeIdentifiers>win7-x64;win7-x86</RuntimeIdentifiers>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">
|
|
<BuiltProjectOutputGroupOutput Include="$(ProjectRuntimeConfigFilePath)">
|
|
<FinalOutputPath>$(ProjectRuntimeConfigFilePath)</FinalOutputPath>
|
|
</BuiltProjectOutputGroupOutput>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">
|
|
<PackageReference Include="Microsoft.NETCore.App">
|
|
<Version>1.0.3</Version>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
|
|
<!--The below package ref is added as a workaround to issue : https://github.com/NuGet/Home/issues/4416
|
|
This should be removed when the issue is fixed-->
|
|
<ItemGroup>
|
|
<PackageReference Include="NewtonSoft.Json" Version="9.0.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition=" '$(TargetFramework)' == 'net451' ">
|
|
<Reference Include="System" />
|
|
<Reference Include="Microsoft.CSharp" />
|
|
</ItemGroup>
|
|
</Project>
|