From 8581018aaeb09e13b8cabb5479010a8f1545dd03 Mon Sep 17 00:00:00 2001 From: David Boike Date: Mon, 12 Aug 2024 16:44:58 -0500 Subject: [PATCH] Repro code --- .gitattributes | 2 + .github/dependabot.yml | 7 ++ .gitignore | 102 ++++++++++++++++++++++++ Class1.cs | 7 ++ FrameworkLimitedDependencySample.csproj | 12 +++ FrameworkLimitedDependencySample.sln | 25 ++++++ 6 files changed, 155 insertions(+) create mode 100644 .gitattributes create mode 100644 .github/dependabot.yml create mode 100644 .gitignore create mode 100644 Class1.cs create mode 100644 FrameworkLimitedDependencySample.csproj create mode 100644 FrameworkLimitedDependencySample.sln diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..dfe0770 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +# Auto detect text files and perform LF normalization +* text=auto diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..ab28517 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,7 @@ +version: 2 +updates: +- package-ecosystem: nuget + directory: "/" + schedule: + interval: daily + open-pull-requests-limit: 1000 \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..190ac12 --- /dev/null +++ b/.gitignore @@ -0,0 +1,102 @@ +/assets +/binaries +/deploy +/nugets +build32 +*.vshost.* +.nu +_UpgradeReport.* +*.cache +Thumbs.db +*~ +*.swp +results +CommonAssemblyInfo.cs +lib/sqlite/System.Data.SQLite.dll +*.orig +*.zip +Samples/DataBus/storage +packages +PrecompiledWeb +tempstorage +.learningtransport +core-only +Release +Artifacts +LogFiles +csx +*.ncrunchproject +*.ncrunchsolution +_NCrunch_NServiceBus/* +logs +run-git.cmd +src/Chocolatey/Build/* + +installer/[F|f]iles +installer/[C|c]ustom[A|a]ctions +installer/ServiceControl-cache + +# Created by https://www.gitignore.io + +### VisualStudio ### +## Ignore Visual Studio temporary files, build results, and +## files generated by popular Visual Studio add-ons. + +# User-specific files +*.suo +*.user +*.json.lock +*.nuget.targets +*.lock.json +*.userosscache +*.sln.docstates +.vs/ +local.settings.json + +# mac temp file ignore +.DS_Store + +# Build results +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ +x64/ +x86/ +build/ +bld/ +[Bb]in/ +[Oo]bj/ + +# Roslyn cache directories +*.ide/ + +# MSTest test Results +[Tt]est[Rr]esult*/ +[Bb]uild[Ll]og.* + +#NUNIT +*.VisualState.xml +TestResult.xml + +# NCrunch +_NCrunch_* +.*crunch*.local.xml + +# ReSharper is a .NET coding add-in +_ReSharper*/ +*.[Rr]e[Ss]harper +*.DotSettings +*.DotSettings.user + +src/scaffolding.config + +# Approval tests temp file +*.received.* + +# JetBrains Rider +.idea/ +*.sln.iml + +# Visual Studio Code +.vscode diff --git a/Class1.cs b/Class1.cs new file mode 100644 index 0000000..c05a14c --- /dev/null +++ b/Class1.cs @@ -0,0 +1,7 @@ +namespace FrameworkLimitedDependencySample +{ + public class Class1 + { + + } +} diff --git a/FrameworkLimitedDependencySample.csproj b/FrameworkLimitedDependencySample.csproj new file mode 100644 index 0000000..59e5859 --- /dev/null +++ b/FrameworkLimitedDependencySample.csproj @@ -0,0 +1,12 @@ + + + + + net6.0-windows + + + + + + + diff --git a/FrameworkLimitedDependencySample.sln b/FrameworkLimitedDependencySample.sln new file mode 100644 index 0000000..e5198e7 --- /dev/null +++ b/FrameworkLimitedDependencySample.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.10.35122.118 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FrameworkLimitedDependencySample", "FrameworkLimitedDependencySample.csproj", "{1FDF6D16-DD49-4961-80CE-601E8923934B}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {1FDF6D16-DD49-4961-80CE-601E8923934B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {1FDF6D16-DD49-4961-80CE-601E8923934B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1FDF6D16-DD49-4961-80CE-601E8923934B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {1FDF6D16-DD49-4961-80CE-601E8923934B}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {57AAA708-6B71-42A2-9009-EA052B7832C6} + EndGlobalSection +EndGlobal