| <!-- |
| Licensed to the Apache Software Foundation (ASF) under one or more |
| contributor license agreements. See the NOTICE file distributed with |
| this work for additional information regarding copyright ownership. |
| The ASF licenses this file to You under the Apache License, Version 2.0 |
| (the "License"); you may not use this file except in compliance with |
| the License. You may obtain a copy of the License at |
| |
| https://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| --> |
| <Project Sdk="Microsoft.NET.Sdk"> |
| |
| <Import Project="../../../common.props" /> |
| |
| <PropertyGroup> |
| <TargetFrameworks>$(DefaultUnitTestTargetFrameworks)</TargetFrameworks> |
| <RootNamespace>Avro.test</RootNamespace> |
| <AssemblyName>Avro.test</AssemblyName> |
| <GenerateAssemblyInfo>false</GenerateAssemblyInfo> |
| <GenerateProgramFile>false</GenerateProgramFile> |
| <SignAssembly>True</SignAssembly> |
| <AssemblyOriginatorKeyFile>..\..\..\Avro.snk</AssemblyOriginatorKeyFile> |
| </PropertyGroup> |
| |
| <PropertyGroup Condition="'$(Configuration)'=='Release'"> |
| <TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
| <WarningsAsErrors /> |
| </PropertyGroup> |
| |
| <ItemGroup> |
| <PackageReference Include="coverlet.collector" Version="$(CoverletCollectorVersion)"> |
| <PrivateAssets>all</PrivateAssets> |
| <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| </PackageReference> |
| <PackageReference Include="coverlet.msbuild" Version="$(CoverletMSBuildVersion)"> |
| <PrivateAssets>all</PrivateAssets> |
| <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| </PackageReference> |
| <PackageReference Include="Microsoft.CodeAnalysis" Version="$(MicrosoftCodeAnalysisVersion)" /> |
| <PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="$(MicrosoftCodeAnalysisCSharpVersion)" /> |
| <PackageReference Include="Microsoft.NET.Test.Sdk" Version="$(MicrosoftNETTestSdkVersion)" /> |
| <PackageReference Include="NUnit" Version="$(NUnitVersion)" /> |
| <PackageReference Include="NUnit3TestAdapter" Version="$(NUnit3TestAdapterVersion)" /> |
| <PackageReference Include="NUnit.ConsoleRunner" Version="$(NUnitConsoleRunnerVersion)" /> |
| </ItemGroup> |
| |
| <ItemGroup> |
| <ProjectReference Include="..\main\Avro.main.csproj" /> |
| <ProjectReference Include="..\codegen\Avro.codegen.csproj" /> |
| </ItemGroup> |
| |
| <ItemGroup> |
| <ProjectReference Include="..\codec\Avro.File.Snappy\Avro.File.Snappy.csproj" /> |
| <ProjectReference Include="..\codec\Avro.File.BZip2\Avro.File.BZip2.csproj" /> |
| <ProjectReference Include="..\codec\Avro.File.XZ\Avro.File.XZ.csproj" /> |
| <ProjectReference Include="..\codec\Avro.File.Zstandard\Avro.File.Zstandard.csproj" /> |
| </ItemGroup> |
| |
| <ItemGroup> |
| <Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" /> |
| </ItemGroup> |
| |
| </Project> |