-
Notifications
You must be signed in to change notification settings - Fork 294
/
Copy pathMicrosoft.Cci.Extensions.csproj
28 lines (25 loc) · 1.2 KB
/
Microsoft.Cci.Extensions.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<DisableImplicitAssetTargetFallback>true</DisableImplicitAssetTargetFallback>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<AssetTargetFallback>$(PackageTargetFallback)portable-net45+win8;</AssetTargetFallback>
<ExcludeFromSourceBuild>true</ExcludeFromSourceBuild>
<LangVersion>8.0</LangVersion>
<IsPackable>true</IsPackable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<OutputPath>$(ToolsArtifactsDir)</OutputPath>
</PropertyGroup>
<PropertyGroup>
<NoWarn>NU1701</NoWarn>
<DefineConstants>$(DefineConstants);COREFX</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Cci" Version="4.0.0-rc3-24214-00" />
<PackageReference Include="Microsoft.Composition" Version="1.0.30" />
<PackageReference Include="System.Diagnostics.Contracts" Version="4.3.0" />
<PackageReference Include="System.Diagnostics.TraceSource" Version="4.0.0" />
<PackageReference Include="System.Reflection.Metadata" Version="1.6.0" />
<PackageReference Include="System.Memory" Version="4.5.3" />
<PackageReference Include="System.IO.FileSystem" Version="4.3.0" />
</ItemGroup>
</Project>