cache nuget packages

This commit is contained in:
master
2025-11-17 20:46:40 +02:00
parent 833e68575a
commit d3128aec24
3344 changed files with 5325703 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<ProjectCapability Include="TestContainer" />
</ItemGroup>
<PropertyGroup>
<DebugSymbols>true</DebugSymbols>
<IsTestProject>true</IsTestProject>
</PropertyGroup>
<!-- Support for importing props via the runner -->
<Import Condition=" '$(_Xunit_ImportPropsFile)' != '' " Project="$(_Xunit_ImportPropsFile)" />
</Project>

View File

@@ -0,0 +1,21 @@
<?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>