meta: refactor c and dotnet
This commit is contained in:
parent
599fe1903f
commit
a4368b5ddc
14 changed files with 53 additions and 252 deletions
10
templates/dotnet/CHANGE_NAME/CHANGE_NAME.csproj
Normal file
10
templates/dotnet/CHANGE_NAME/CHANGE_NAME.csproj
Normal file
|
@ -0,0 +1,10 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net9.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
9
templates/dotnet/CHANGE_NAME/Program.cs
Normal file
9
templates/dotnet/CHANGE_NAME/Program.cs
Normal file
|
@ -0,0 +1,9 @@
|
|||
using System;
|
||||
|
||||
namespace CHANGE_NAME {
|
||||
class Program {
|
||||
static void Main(string[] args) {
|
||||
Console.WriteLine("Hello, world!");
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue