mirror of
https://github.com/microsoft/autogen.git
synced 2025-08-31 12:00:11 +00:00
85 lines
4.3 KiB
XML
85 lines
4.3 KiB
XML
<<<<<<< HEAD
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<Import Project="./eng/Version.props" />
|
|
<Import Project="./eng/MetaInfo.props" />
|
|
<Import Project="./eng/Sign.props" />
|
|
<PropertyGroup>
|
|
<PackageTargetFrameworks>netstandard2.0;net6.0;net8.0</PackageTargetFrameworks>
|
|
<TestTargetFrameworks>net8.0</TestTargetFrameworks>
|
|
<LangVersion>preview</LangVersion>
|
|
<Nullable>enable</Nullable>
|
|
<SignAssembly>True</SignAssembly>
|
|
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)eng/opensource.snk</AssemblyOriginatorKeyFile>
|
|
<PublicKey>0024000004800000940000000602000000240000525341310004000001000100f1d038d0b85ae392ad72011df91e9343b0b5df1bb8080aa21b9424362d696919e0e9ac3a8bca24e283e10f7a569c6f443e1d4e3ebc84377c87ca5caa562e80f9932bf5ea91b7862b538e13b8ba91c7565cf0e8dfeccfea9c805ae3bda044170ecc7fc6f147aeeac422dd96aeb9eb1f5a5882aa650efe2958f2f8107d2038f2ab</PublicKey>
|
|
<CSNoWarn>CS1998;CS1591</CSNoWarn>
|
|
<NoWarn>$(NoWarn);$(CSNoWarn);NU5104</NoWarn>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<IsPackable>false</IsPackable>
|
|
<EnableNetAnalyzers>true</EnableNetAnalyzers>
|
|
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
|
|
<IsTestProject>false</IsTestProject>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<RepoRoot>$(MSBuildThisFileDirectory)</RepoRoot>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup Condition="'$(IsTestProject)' == 'true'">
|
|
<PackageReference Include="ApprovalTests" Version="$(ApprovalTestVersion)" />
|
|
<PackageReference Include="FluentAssertions" Version="$(FluentAssertionVersion)" />
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="$(MicrosoftNETTestSdkVersion)" />
|
|
<PackageReference Include="xunit" Version="$(XUnitVersion)" />
|
|
<PackageReference Include="xunit.runner.console" Version="$(XUnitVersion)" />
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="$(XUnitVersion)" />
|
|
<PackageReference Include="Moq" Version="4.20.70" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="'$(IsTestProject)' == 'true'">
|
|
<Content Include="$(RepoRoot)resource/**/*.*">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
<Link>testData/%(RecursiveDir)%(Filename)%(Extension)</Link>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="'$(IncludeResourceFolder)' == 'true'">
|
|
<Content Include="$(RepoRoot)resource/**/*.*">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
<Link>resource/%(RecursiveDir)%(Filename)%(Extension)</Link>
|
|
</Content>
|
|
</ItemGroup>
|
|
=======
|
|
<Project>
|
|
|
|
<PropertyGroup>
|
|
<LangVersion>latest</LangVersion>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<!-- Capture PackageIconFullPath into DefaultDotnetIconFullPath before we overwrite PackageIconFullPath. -->
|
|
<!-- DefaultDotnetIconFullPath is only needed for the ServiceDisovery packages. The property can be removed when these libraries move. See https://github.com/dotnet/aspire/issues/170 -->
|
|
<DefaultDotnetIconFullPath>$(PackageIconFullPath)</DefaultDotnetIconFullPath>
|
|
<PackageIconFullPath>$(SharedDir)Aspire_icon_256.png</PackageIconFullPath>
|
|
<PackageProjectUrl>https://github.com/dotnet/aspire</PackageProjectUrl>
|
|
<WarnOnPackingNonPackableProject>false</WarnOnPackingNonPackableProject>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
|
|
<DebugType>embedded</DebugType>
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<StrongNameKeyId>Open</StrongNameKeyId>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<!-- Set RunSettingsFilePath property which is read by VSTest. -->
|
|
<RunSettingsFilePath Condition="'$(RunSettingsFilePath)' == ''">$(RepositoryEngineeringDir).runsettings</RunSettingsFilePath>
|
|
<!-- Redirect test logs into a subfolder -->
|
|
<TestResultsLogDir>$([MSBuild]::NormalizeDirectory('$(ArtifactsLogDir)', 'TestLogs'))</TestResultsLogDir>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<NoWarn>$(NoWarn);CS1591;SKEXP0001;SKEXP0010;SKEXP0020</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
>>>>>>> agnext_main
|
|
</Project>
|