mirror of
https://github.com/VSadov/Satori.git
synced 2025-06-09 17:44:48 +09:00

* disable vs restore in vs for projects targeting platform specific older frameworks * Add infra to auto-update solution files for restore * Add NuGet.config files for solutions affected by restore issue Co-authored-by: Viktor Hofer <viktor.hofer@microsoft.com>
12 lines
No EOL
726 B
XML
12 lines
No EOL
726 B
XML
<configuration>
|
|
<!-- This disables restore in VS for projects that target platform specific target frameworks older than net5.0. -->
|
|
<packageRestore>
|
|
<!-- The 'automatic' key is set to True when the "Automatically check for missing packages during
|
|
build in Visual Studio" checkbox is set. Clearing the box sets this to False and disables
|
|
automatic restore. -->
|
|
<add key="automatic" value="False" />
|
|
<!-- The 'enabled' key is True when the "Allow NuGet to download missing packages" checkbox is set.
|
|
Clearing the box sets this to False, disabling command-line, automatic, and MSBuild-integrated restore. -->
|
|
<add key="enabled" value="False" />
|
|
</packageRestore>
|
|
</configuration> |