mirror of
https://dev.azure.com/tstanciu94/PhantomMind/_git/Bitip
synced 2025-10-13 01:52:19 +03:00
feat: add .NET project structure with .gitignore, solution, and project files for Bitip.Client and Bitip.Client.Tests
This commit is contained in:
parent
045cd12fd5
commit
11bd4fbe18
5
.gitignore
vendored
5
.gitignore
vendored
@ -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
30
src/clients/dotnet/.gitignore
vendored
Normal 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
|
@ -0,0 +1,8 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<TargetFramework>net9.0</TargetFramework>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
</Project>
|
7
src/clients/dotnet/Bitip.Client.Tests/Class1.cs
Normal file
7
src/clients/dotnet/Bitip.Client.Tests/Class1.cs
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
namespace Bitip.Client.Tests
|
||||||
|
{
|
||||||
|
public class Class1
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
31
src/clients/dotnet/Bitip.Client.sln
Normal file
31
src/clients/dotnet/Bitip.Client.sln
Normal 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
|
8
src/clients/dotnet/Bitip.Client/Bitip.Client.csproj
Normal file
8
src/clients/dotnet/Bitip.Client/Bitip.Client.csproj
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<TargetFramework>net9.0</TargetFramework>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
</Project>
|
7
src/clients/dotnet/Bitip.Client/Class1.cs
Normal file
7
src/clients/dotnet/Bitip.Client/Class1.cs
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
namespace Bitip.Client
|
||||||
|
{
|
||||||
|
public class Class1
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
1
src/clients/node/README.md
Normal file
1
src/clients/node/README.md
Normal file
@ -0,0 +1 @@
|
|||||||
|
# In development
|
Loading…
x
Reference in New Issue
Block a user