commit initial

This commit is contained in:
baishi
2026-05-30 07:59:28 +08:00
commit cbefad339f
39 changed files with 7736 additions and 0 deletions

43
TinyCC.sln Normal file
View File

@@ -0,0 +1,43 @@
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.31903.59
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{7E2DE457-6AB3-40AB-B83C-0AB971ADD290}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TinyCC.Core", "src\TinyCC.Core\TinyCC.Core.csproj", "{599F1C53-5D1E-4611-A1AE-AF47903501D8}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TinyCC.Cli", "src\TinyCC.Cli\TinyCC.Cli.csproj", "{3918FB1E-E7BB-450A-9CDE-6FDE225D4701}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{95B24AFA-1124-40F8-9185-329E241694CF}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TinyCC.Tests", "tests\TinyCC.Tests\TinyCC.Tests.csproj", "{ADC02ACF-7F89-4BB6-BE27-69787AC8BA1A}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{599F1C53-5D1E-4611-A1AE-AF47903501D8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{599F1C53-5D1E-4611-A1AE-AF47903501D8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{599F1C53-5D1E-4611-A1AE-AF47903501D8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{599F1C53-5D1E-4611-A1AE-AF47903501D8}.Release|Any CPU.Build.0 = Release|Any CPU
{3918FB1E-E7BB-450A-9CDE-6FDE225D4701}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3918FB1E-E7BB-450A-9CDE-6FDE225D4701}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3918FB1E-E7BB-450A-9CDE-6FDE225D4701}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3918FB1E-E7BB-450A-9CDE-6FDE225D4701}.Release|Any CPU.Build.0 = Release|Any CPU
{ADC02ACF-7F89-4BB6-BE27-69787AC8BA1A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{ADC02ACF-7F89-4BB6-BE27-69787AC8BA1A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{ADC02ACF-7F89-4BB6-BE27-69787AC8BA1A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{ADC02ACF-7F89-4BB6-BE27-69787AC8BA1A}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{599F1C53-5D1E-4611-A1AE-AF47903501D8} = {7E2DE457-6AB3-40AB-B83C-0AB971ADD290}
{3918FB1E-E7BB-450A-9CDE-6FDE225D4701} = {7E2DE457-6AB3-40AB-B83C-0AB971ADD290}
{ADC02ACF-7F89-4BB6-BE27-69787AC8BA1A} = {95B24AFA-1124-40F8-9185-329E241694CF}
EndGlobalSection
EndGlobal