feat: add .NET project structure with .gitignore, solution, and project files for Bitip.Client and Bitip.Client.Tests

This commit is contained in:
Tudor Stanciu 2025-10-06 01:52:30 +03:00
parent 045cd12fd5
commit 11bd4fbe18
8 changed files with 97 additions and 0 deletions

5
.gitignore vendored
View File

@ -103,3 +103,8 @@ seq-data/
.claude/ .claude/
build.sh build.sh
buildx*.sh buildx*.sh
# .NET
**/[Bb]in/
**/[Oo]bj/
**/*.nupkg

30
src/clients/dotnet/.gitignore vendored Normal file
View File

@ -0,0 +1,30 @@
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
# User-specific files
*.rsuser
*.suo
*.user
*.userosscache
*.sln.docstates
# Build results
[Dd]ebug/
[Dd]ebugPublic/
[Rr]elease/
[Rr]eleases/
x64/
x86/
[Aa][Rr][Mm]/
[Aa][Rr][Mm]64/
bld/
[Bb]in/
[Oo]bj/
[Ll]og/
# Visual Studio cache/options directory
.vs/
# NuGet Packages
*.nupkg
*.snupkg

View File

@ -0,0 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>

View File

@ -0,0 +1,7 @@
namespace Bitip.Client.Tests
{
public class Class1
{
}
}

View File

@ -0,0 +1,31 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.14.36429.23
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Bitip.Client", "Bitip.Client\Bitip.Client.csproj", "{C4AC72BE-14C9-4D96-9A88-BC69DD5707FD}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Bitip.Client.Tests", "Bitip.Client.Tests\Bitip.Client.Tests.csproj", "{FA3B984B-4ADE-4B0A-BB6F-FD287A73B266}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{C4AC72BE-14C9-4D96-9A88-BC69DD5707FD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C4AC72BE-14C9-4D96-9A88-BC69DD5707FD}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C4AC72BE-14C9-4D96-9A88-BC69DD5707FD}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C4AC72BE-14C9-4D96-9A88-BC69DD5707FD}.Release|Any CPU.Build.0 = Release|Any CPU
{FA3B984B-4ADE-4B0A-BB6F-FD287A73B266}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FA3B984B-4ADE-4B0A-BB6F-FD287A73B266}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FA3B984B-4ADE-4B0A-BB6F-FD287A73B266}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FA3B984B-4ADE-4B0A-BB6F-FD287A73B266}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {C9E930B5-D456-4B6F-98C1-95A4D1FA49B5}
EndGlobalSection
EndGlobal

View File

@ -0,0 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>

View File

@ -0,0 +1,7 @@
namespace Bitip.Client
{
public class Class1
{
}
}

View File

@ -0,0 +1 @@
# In development