2016-12-20 13:29:45 -08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2016-12-20 16:38:04 -08:00
|
|
|
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
|
|
|
|
|
|
2016-10-28 22:04:20 -10:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<Description>Abstractions for making code that uses file system and environment testable.</Description>
|
|
|
|
|
<VersionPrefix>2.0.0-beta</VersionPrefix>
|
|
|
|
|
<TargetFramework>netstandard1.3</TargetFramework>
|
|
|
|
|
<WarningsAsErrors>true</WarningsAsErrors>
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
|
<AssemblyOriginatorKeyFile>../../tools/Key.snk</AssemblyOriginatorKeyFile>
|
|
|
|
|
<SignAssembly>true</SignAssembly>
|
|
|
|
|
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
|
|
|
|
|
<RepositoryType>git</RepositoryType>
|
|
|
|
|
<RepositoryUrl>git://github.com/dotnet/cli</RepositoryUrl>
|
|
|
|
|
</PropertyGroup>
|
2017-03-02 19:49:30 -08:00
|
|
|
|
|
2016-10-28 22:04:20 -10:00
|
|
|
|
<ItemGroup>
|
2017-03-02 19:49:30 -08:00
|
|
|
|
<PackageReference Include="NETStandard.Library" Version="1.6.0" />
|
2016-10-28 22:04:20 -10:00
|
|
|
|
</ItemGroup>
|
2017-03-02 21:04:03 -08:00
|
|
|
|
|
2016-10-28 22:04:20 -10:00
|
|
|
|
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.3' ">
|
2017-03-02 19:49:30 -08:00
|
|
|
|
<PackageReference Include="System.AppContext" Version="4.1.0" />
|
|
|
|
|
<PackageReference Include="System.Collections" Version="4.0.11" />
|
|
|
|
|
<PackageReference Include="System.IO" Version="4.1.0" />
|
|
|
|
|
<PackageReference Include="System.IO.FileSystem" Version="4.0.1" />
|
|
|
|
|
<PackageReference Include="System.Reflection.TypeExtensions" Version="4.1.0" />
|
|
|
|
|
<PackageReference Include="System.Runtime.Extensions" Version="4.1.0" />
|
|
|
|
|
<PackageReference Include="System.Runtime.InteropServices" Version="4.1.0" />
|
|
|
|
|
<PackageReference Include="System.Runtime.InteropServices.RuntimeInformation" Version="4.0.0" />
|
2016-10-28 22:04:20 -10:00
|
|
|
|
</ItemGroup>
|
2016-12-20 13:29:45 -08:00
|
|
|
|
</Project>
|