Skip to content

Commit

Permalink
feat(sln): add VersioningNet8 project to the solution
Browse files Browse the repository at this point in the history
feat(VersioningNet8): add Program.cs and VersioningNet8.csproj files for a new project targeting .NET 8.0
  • Loading branch information
leoli0605 committed Jul 26, 2024
1 parent c825680 commit 9903b89
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Csharp.sln
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WinUSB", "WinUSB\WinUSB.csp
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DemoWPF", "DemoWPF\DemoWPF.csproj", "{07AA1E28-FC2F-4235-BA7A-3A960155285A}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VersioningNet8", "VersioningNet8\VersioningNet8.csproj", "{B745BC8C-E2A3-4F48-BE37-4E8DB0CF0C89}"
EndProject
Global
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down Expand Up @@ -173,5 +175,17 @@ Global
{07AA1E28-FC2F-4235-BA7A-3A960155285A}.Release|x64.Build.0 = Release|Any CPU
{07AA1E28-FC2F-4235-BA7A-3A960155285A}.Release|x86.ActiveCfg = Release|Any CPU
{07AA1E28-FC2F-4235-BA7A-3A960155285A}.Release|x86.Build.0 = Release|Any CPU
{B745BC8C-E2A3-4F48-BE37-4E8DB0CF0C89}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B745BC8C-E2A3-4F48-BE37-4E8DB0CF0C89}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B745BC8C-E2A3-4F48-BE37-4E8DB0CF0C89}.Debug|x64.ActiveCfg = Debug|Any CPU
{B745BC8C-E2A3-4F48-BE37-4E8DB0CF0C89}.Debug|x64.Build.0 = Debug|Any CPU
{B745BC8C-E2A3-4F48-BE37-4E8DB0CF0C89}.Debug|x86.ActiveCfg = Debug|Any CPU
{B745BC8C-E2A3-4F48-BE37-4E8DB0CF0C89}.Debug|x86.Build.0 = Debug|Any CPU
{B745BC8C-E2A3-4F48-BE37-4E8DB0CF0C89}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B745BC8C-E2A3-4F48-BE37-4E8DB0CF0C89}.Release|Any CPU.Build.0 = Release|Any CPU
{B745BC8C-E2A3-4F48-BE37-4E8DB0CF0C89}.Release|x64.ActiveCfg = Release|Any CPU
{B745BC8C-E2A3-4F48-BE37-4E8DB0CF0C89}.Release|x64.Build.0 = Release|Any CPU
{B745BC8C-E2A3-4F48-BE37-4E8DB0CF0C89}.Release|x86.ActiveCfg = Release|Any CPU
{B745BC8C-E2A3-4F48-BE37-4E8DB0CF0C89}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal
9 changes: 9 additions & 0 deletions VersioningNet8/Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
namespace VersioningNet8;

class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello, World!");
}
}
10 changes: 10 additions & 0 deletions VersioningNet8/VersioningNet8.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

</Project>

0 comments on commit 9903b89

Please sign in to comment.