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