Skip to content

Commit

Permalink
.NET 8
Browse files Browse the repository at this point in the history
  • Loading branch information
wcabus committed Feb 15, 2024
1 parent 6cc1651 commit 3fab9f5
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/DoomSharp.AnsiConsole/DoomSharp.AnsiConsole.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
Expand Down
55 changes: 55 additions & 0 deletions src/DoomSharp.sln.startup.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
/*
This is a configuration file for the SwitchStartupProject Visual Studio Extension
See https://heptapod.host/thirteen/switchstartupproject/blob/branch/current/Configuration.md
*/
{
/* Configuration File Version */
"Version": 3,

/* Create an item in the dropdown list for each project in the solution? */
"ListAllProjects": true,

/*
Dictionary of named configurations with one or multiple startup projects
and optional parameters like command line arguments and working directory.
Example:

"MultiProjectConfigurations": {
"A + B (Ext)": {
"Projects": {
"MyProjectA": {},
"MyProjectB": {
"CommandLineArguments": "1234",
"WorkingDirectory": "%USERPROFILE%\\test",
"StartExternalProgram": "c:\\myprogram.exe"
}
}
},
"A + B": {
"Projects": {
"MyProjectA": {},
"MyProjectB": {
"CommandLineArguments": "",
"WorkingDirectory": "",
"StartProject": true
}
}
},
"D (Debug x86)": {
"Projects": {
"MyProjectD": {}
},
"SolutionConfiguration": "Debug",
"SolutionPlatform": "x86",
},
"D (Release x64)": {
"Projects": {
"MyProjectD": {}
},
"SolutionConfiguration": "Release",
"SolutionPlatform": "x64",
}
}
*/
"MultiProjectConfigurations": {}
}

0 comments on commit 3fab9f5

Please sign in to comment.