feat: create default lib

This commit is contained in:
chuan
2026-06-03 20:55:40 +08:00
Unverified
parent 370cdc67e9
commit ca09cf7273
5 changed files with 35 additions and 0 deletions
+2
View File
@@ -1,3 +1,5 @@
tmp/
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
##
+14
View File
@@ -0,0 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\TinyTUI\TinyTUI.csproj" />
</ItemGroup>
</Project>
+2
View File
@@ -0,0 +1,2 @@
// See https://aka.ms/new-console-template for more information
Console.WriteLine("Hello, World!");
+9
View File
@@ -0,0 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>
+8
View File
@@ -1,2 +1,10 @@
<Solution>
<Folder Name="/_/">
<File Path=".gitignore" />
<File Path="Directory.Build.props" />
<File Path="nuget.config" />
<File Path="README.md" />
</Folder>
<Project Path="src/Example/Example.csproj" Id="6656c1ec-b220-4e7a-8875-5a97a85afbc1" />
<Project Path="src/TinyTUI/TinyTUI.csproj" Id="f39199aa-6947-4951-b952-a1588045505e" />
</Solution>