Skip to content

Commit 8a4cfd7

Browse files
committed
Add Visual Studio solution and update project configuration
- Create OSDCloudCustomBuilder.sln for Visual Studio support - Update PowerShell SDK version to 7.4.1 in project file - Add CodeGPT API key configuration to VS Code settings
1 parent 3c3dd3d commit 8a4cfd7

File tree

3 files changed

+27
-2
lines changed

3 files changed

+27
-2
lines changed

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,6 @@
1414
},
1515
"[powershell]": {
1616
"editor.defaultFormatter": "ms-vscode.powershell"
17-
}
17+
},
18+
"CodeGPT.apiKey": "CodeGPT Plus Beta"
1819
}

OSDCloudCustomBuilder.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.PowerShell.Sdk">
1+
<Project Sdk="Microsoft.PowerShell.Sdk/7.4.1">
22
<PropertyGroup>
33
<RootNamespace>OSDCloudCustomBuilder</RootNamespace>
44
<Description>Fully migrated PowerShell module: OSDCloudCustomBuilder</Description>

OSDCloudCustomBuilder.sln

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
Microsoft Visual Studio Solution File, Format Version 12.00
2+
# Visual Studio Version 17
3+
VisualStudioVersion = 17.5.2.0
4+
MinimumVisualStudioVersion = 10.0.40219.1
5+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OSDCloudCustomBuilder", "OSDCloudCustomBuilder.csproj", "{00105A73-BFDB-F108-0AE5-35BFED453E42}"
6+
EndProject
7+
Global
8+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
9+
Debug|Any CPU = Debug|Any CPU
10+
Release|Any CPU = Release|Any CPU
11+
EndGlobalSection
12+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
13+
{00105A73-BFDB-F108-0AE5-35BFED453E42}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
14+
{00105A73-BFDB-F108-0AE5-35BFED453E42}.Debug|Any CPU.Build.0 = Debug|Any CPU
15+
{00105A73-BFDB-F108-0AE5-35BFED453E42}.Release|Any CPU.ActiveCfg = Release|Any CPU
16+
{00105A73-BFDB-F108-0AE5-35BFED453E42}.Release|Any CPU.Build.0 = Release|Any CPU
17+
EndGlobalSection
18+
GlobalSection(SolutionProperties) = preSolution
19+
HideSolutionNode = FALSE
20+
EndGlobalSection
21+
GlobalSection(ExtensibilityGlobals) = postSolution
22+
SolutionGuid = {B6D8B27F-FE47-44FD-992F-5DC161E56E77}
23+
EndGlobalSection
24+
EndGlobal

0 commit comments

Comments
 (0)