| 123456789101112131415161718192021 |
- <?xml version="1.0" encoding="utf-8" ?>
- <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <!-- Desktop CLR needs auto-generated binding redirects (and full PDBs for TPv1) -->
- <PropertyGroup Condition=" '$(TargetFrameworkIdentifier)' == '.NETFramework' ">
- <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
- <DebugType Condition=" '$(DebugType)' == '' ">full</DebugType>
- <GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType>
- </PropertyGroup>
- <!-- .NET Core need .deps.json and .runtimeconfig.json files (and portable PDBs for TPv2) -->
- <PropertyGroup Condition=" '$(TargetFrameworkIdentifier)' == '.NETCoreApp' ">
- <DebugType Condition=" '$(DebugType)' == '' ">portable</DebugType>
- <GenerateDependencyFile>true</GenerateDependencyFile>
- <GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
- </PropertyGroup>
- <!-- Support for importing targets via the runner -->
- <Import Condition=" '$(_Xunit_ImportTargetsFile)' != '' " Project="$(_Xunit_ImportTargetsFile)" />
- </Project>
|