blob: 2d6b114dc0898b854dfae6a58776c2f484775451 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="../../../../../msbuild/ice.common.props" />
<PropertyGroup>
<AssemblyName>IceBox</AssemblyName>
<Version>$(IceVersion)</Version>
<OutputPath>../../../../../lib</OutputPath>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<SliceCompile Include="../../../../../../slice/IceBox/IceBox.ice" />
<Compile Include="../../../AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="zeroc.icebuilder.msbuild" Version="5.0.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="../../../../Ice/msbuild/netstandard2.0/ice.csproj" />
</ItemGroup>
</Project>
|