-
Notifications
You must be signed in to change notification settings - Fork 22
/
build.csproj
24 lines (21 loc) · 1.06 KB
/
build.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>$(BaseTargetFramework)</TargetFramework>
<OutputType>Exe</OutputType>
<RootNamespace>Build</RootNamespace>
<ApplicationIcon>../docs/icon.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CSharpInteractive" Version="1.1.5" />
<PackageReference Include="Pure.DI" Version="$(InternalVersion)">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Immutype" Version="1.0.16">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1"/>
<ProjectReference Include="..\benchmarks\Pure.DI.Benchmarks\Pure.DI.Benchmarks.csproj"/>
</ItemGroup>
</Project>