2016-12-20 21:29:45 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2017-02-17 08:29:17 +00:00
|
|
|
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
|
|
|
|
|
|
2016-11-15 22:12:28 +00:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<VersionPrefix>1.0.0-rc</VersionPrefix>
|
2017-03-10 05:17:10 +00:00
|
|
|
|
<TargetFramework>netcoreapp1.1</TargetFramework>
|
2016-11-15 22:12:28 +00:00
|
|
|
|
<AssemblyName>dotnet-dependency-context-test</AssemblyName>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
2017-03-10 05:17:10 +00:00
|
|
|
|
<PackageTargetFallback>$(PackageTargetFallback);dnxcore50;portable-net45+win8</PackageTargetFallback>
|
|
|
|
|
<RuntimeFrameworkVersion>1.1.1</RuntimeFrameworkVersion>
|
|
|
|
|
<DisableImplicitFrameworkReferences>false</DisableImplicitFrameworkReferences>
|
2016-11-15 22:12:28 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2017-01-06 03:44:52 +00:00
|
|
|
|
<BuiltProjectOutputGroupOutput Include="$(ProjectRuntimeConfigFilePath)">
|
|
|
|
|
<FinalOutputPath>$(ProjectRuntimeConfigFilePath)</FinalOutputPath>
|
|
|
|
|
</BuiltProjectOutputGroupOutput>
|
2016-11-15 22:12:28 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2017-03-03 08:36:11 +00:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.DependencyModel" Version="$(DependencyModelVersion)" />
|
2016-11-15 22:12:28 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|