Skip to content

Commit

Permalink
Repro code
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidBoike committed Aug 12, 2024
0 parents commit 8581018
Show file tree
Hide file tree
Showing 6 changed files with 155 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Auto detect text files and perform LF normalization
* text=auto
7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
version: 2
updates:
- package-ecosystem: nuget
directory: "/"
schedule:
interval: daily
open-pull-requests-limit: 1000
102 changes: 102 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -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
7 changes: 7 additions & 0 deletions Class1.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
namespace FrameworkLimitedDependencySample
{
public class Class1
{

}
}
12 changes: 12 additions & 0 deletions FrameworkLimitedDependencySample.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<!-- Can't be upgraded past net6.0 to support PowerShell 7.2 LTS -->
<TargetFramework>net6.0-windows</TargetFramework>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="System.Management.Automation" Version="7.2.21" />
</ItemGroup>

</Project>
25 changes: 25 additions & 0 deletions FrameworkLimitedDependencySample.sln
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 8581018

Please sign in to comment.