Skip to content

Commit

Permalink
create solution
Browse files Browse the repository at this point in the history
  • Loading branch information
Scighost committed May 5, 2023
1 parent aed062e commit a925847
Show file tree
Hide file tree
Showing 3 changed files with 76 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[*.cs]

# CS8618: 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。
dotnet_diagnostic.CS8618.severity = none
66 changes: 66 additions & 0 deletions Starward.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.31903.59
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Starward.Core", "Starward.Core\Starward.Core.csproj", "{E63D6151-9CB1-4E3F-B74F-F006FDF9AC38}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{6F090A28-90DC-480B-AE52-61FD1F993D45}"
ProjectSection(SolutionItems) = preProject
.editorconfig = .editorconfig
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Starward", "Starward\Starward.csproj", "{CD1EC7A8-4DA1-4998-9B84-F948AA98CDE3}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|ARM64 = Debug|ARM64
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|ARM64 = Release|ARM64
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{E63D6151-9CB1-4E3F-B74F-F006FDF9AC38}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E63D6151-9CB1-4E3F-B74F-F006FDF9AC38}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E63D6151-9CB1-4E3F-B74F-F006FDF9AC38}.Debug|ARM64.ActiveCfg = Debug|Any CPU
{E63D6151-9CB1-4E3F-B74F-F006FDF9AC38}.Debug|ARM64.Build.0 = Debug|Any CPU
{E63D6151-9CB1-4E3F-B74F-F006FDF9AC38}.Debug|x64.ActiveCfg = Debug|Any CPU
{E63D6151-9CB1-4E3F-B74F-F006FDF9AC38}.Debug|x64.Build.0 = Debug|Any CPU
{E63D6151-9CB1-4E3F-B74F-F006FDF9AC38}.Debug|x86.ActiveCfg = Debug|Any CPU
{E63D6151-9CB1-4E3F-B74F-F006FDF9AC38}.Debug|x86.Build.0 = Debug|Any CPU
{E63D6151-9CB1-4E3F-B74F-F006FDF9AC38}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E63D6151-9CB1-4E3F-B74F-F006FDF9AC38}.Release|Any CPU.Build.0 = Release|Any CPU
{E63D6151-9CB1-4E3F-B74F-F006FDF9AC38}.Release|ARM64.ActiveCfg = Release|Any CPU
{E63D6151-9CB1-4E3F-B74F-F006FDF9AC38}.Release|ARM64.Build.0 = Release|Any CPU
{E63D6151-9CB1-4E3F-B74F-F006FDF9AC38}.Release|x64.ActiveCfg = Release|Any CPU
{E63D6151-9CB1-4E3F-B74F-F006FDF9AC38}.Release|x64.Build.0 = Release|Any CPU
{E63D6151-9CB1-4E3F-B74F-F006FDF9AC38}.Release|x86.ActiveCfg = Release|Any CPU
{E63D6151-9CB1-4E3F-B74F-F006FDF9AC38}.Release|x86.Build.0 = Release|Any CPU
{CD1EC7A8-4DA1-4998-9B84-F948AA98CDE3}.Debug|Any CPU.ActiveCfg = Debug|x64
{CD1EC7A8-4DA1-4998-9B84-F948AA98CDE3}.Debug|Any CPU.Build.0 = Debug|x64
{CD1EC7A8-4DA1-4998-9B84-F948AA98CDE3}.Debug|ARM64.ActiveCfg = Debug|ARM64
{CD1EC7A8-4DA1-4998-9B84-F948AA98CDE3}.Debug|ARM64.Build.0 = Debug|ARM64
{CD1EC7A8-4DA1-4998-9B84-F948AA98CDE3}.Debug|x64.ActiveCfg = Debug|x64
{CD1EC7A8-4DA1-4998-9B84-F948AA98CDE3}.Debug|x64.Build.0 = Debug|x64
{CD1EC7A8-4DA1-4998-9B84-F948AA98CDE3}.Debug|x86.ActiveCfg = Debug|x86
{CD1EC7A8-4DA1-4998-9B84-F948AA98CDE3}.Debug|x86.Build.0 = Debug|x86
{CD1EC7A8-4DA1-4998-9B84-F948AA98CDE3}.Release|Any CPU.ActiveCfg = Release|x64
{CD1EC7A8-4DA1-4998-9B84-F948AA98CDE3}.Release|Any CPU.Build.0 = Release|x64
{CD1EC7A8-4DA1-4998-9B84-F948AA98CDE3}.Release|ARM64.ActiveCfg = Release|ARM64
{CD1EC7A8-4DA1-4998-9B84-F948AA98CDE3}.Release|ARM64.Build.0 = Release|ARM64
{CD1EC7A8-4DA1-4998-9B84-F948AA98CDE3}.Release|x64.ActiveCfg = Release|x64
{CD1EC7A8-4DA1-4998-9B84-F948AA98CDE3}.Release|x64.Build.0 = Release|x64
{CD1EC7A8-4DA1-4998-9B84-F948AA98CDE3}.Release|x86.ActiveCfg = Release|x86
{CD1EC7A8-4DA1-4998-9B84-F948AA98CDE3}.Release|x86.Build.0 = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {C41C5B8D-996D-4FA7-82E7-DC82AE59746E}
EndGlobalSection
EndGlobal
6 changes: 6 additions & 0 deletions nuget.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<add key="CommunityToolkitLabs" value="https://pkgs.dev.azure.com/dotnet/CommunityToolkit/_packaging/CommunityToolkit-Labs/nuget/v3/index.json" />
</packageSources>
</configuration>

0 comments on commit a925847

Please sign in to comment.