blob: 30e3208baefc5a1b311663909ec19a2c3da3634e [file] [log] [blame]
Jens Geyeraffea7b2020-05-22 17:28:30 +02001<Project Sdk="Microsoft.NET.Sdk">
Jens Geyeraa0c8b32019-01-28 23:27:45 +01002 <!--
3 Licensed to the Apache Software Foundation(ASF) under one
4 or more contributor license agreements.See the NOTICE file
5 distributed with this work for additional information
6 regarding copyright ownership.The ASF licenses this file
7 to you under the Apache License, Version 2.0 (the
8 "License"); you may not use this file except in compliance
9 with the License. You may obtain a copy of the License at
10
11 http://www.apache.org/licenses/LICENSE-2.0
12
13 Unless required by applicable law or agreed to in writing,
14 software distributed under the License is distributed on an
15 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 KIND, either express or implied. See the License for the
17 specific language governing permissions and limitations
18 under the License.
19 -->
Mario Emmenlauerdb997bd2021-08-25 11:53:41 +020020
Jens Geyeraa0c8b32019-01-28 23:27:45 +010021 <PropertyGroup>
Jens Geyere26b4a82024-11-12 23:53:04 +010022 <TargetFramework>net9.0</TargetFramework>
Jens Geyer4115e952023-11-21 23:00:01 +010023 <LangVersion>latestMajor</LangVersion>
Jens Geyeref199cc2024-09-03 01:28:31 +020024 <Version>0.22.0.0</Version>
Jens Geyer98a23252022-01-09 16:50:52 +010025 <Nullable>enable</Nullable>
Jens Geyeraa0c8b32019-01-28 23:27:45 +010026 </PropertyGroup>
Mario Emmenlauerdb997bd2021-08-25 11:53:41 +020027
Jens Geyeraa0c8b32019-01-28 23:27:45 +010028 <ItemGroup>
Jens Geyer03413232024-05-01 18:49:15 +020029 <PackageReference Include="CompareNETObjects" Version="4.83.0" />
Jens Geyere26b4a82024-11-12 23:53:04 +010030 <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
31 <PackageReference Include="MSTest.TestAdapter" Version="3.6.3" />
32 <PackageReference Include="MSTest.TestFramework" Version="3.6.3" />
33 <PackageReference Include="NSubstitute" Version="5.3.0" />
Jens Geyeraa0c8b32019-01-28 23:27:45 +010034 </ItemGroup>
Mario Emmenlauerdb997bd2021-08-25 11:53:41 +020035
Jens Geyeraa0c8b32019-01-28 23:27:45 +010036 <ItemGroup>
37 <ProjectReference Include="..\..\Thrift\Thrift.csproj" />
Jens Geyere26b4a82024-11-12 23:53:04 +010038 <ProjectReference Include="..\Thrift.Compile.Tests\Thrift.Compile.net9\Thrift.Compile.net9.csproj" />
Jens Geyeraa0c8b32019-01-28 23:27:45 +010039 </ItemGroup>
Mario Emmenlauerdb997bd2021-08-25 11:53:41 +020040
Jens Geyeraa0c8b32019-01-28 23:27:45 +010041 <ItemGroup>
42 <Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" />
43 </ItemGroup>
Jens Geyer4c7b9fd2021-12-04 22:48:37 +010044
45 <ItemGroup>
Jens Geyer51fc54f2023-02-14 23:51:16 +010046 <PackageReference Update="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3" />
Jens Geyer4c7b9fd2021-12-04 22:48:37 +010047 </ItemGroup>
Jens Geyeraa0c8b32019-01-28 23:27:45 +010048</Project>