Initial commit

This commit is contained in:
Trevor Hall 2026-03-03 23:53:04 -05:00
commit 5584446828
37 changed files with 7962 additions and 0 deletions

48
SecuCore.csproj Normal file
View file

@ -0,0 +1,48 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<PlatformTarget>AnyCPU</PlatformTarget>
<Title>SecuCore</Title>
<NoWin32Manifest>true</NoWin32Manifest>
<Copyright>Trevor Hall</Copyright>
<Description>A library for communicating with servers through TCP Sockets. An alternative to the Clients provided by Microsoft.</Description>
<AnalysisLevel>none</AnalysisLevel>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
<NeutralLanguage>en-US</NeutralLanguage>
<PackageTags>TCP, Socket, TLS</PackageTags>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<Optimize>True</Optimize>
<DefineConstants />
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>full</DebugType>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<AllowUnsafeBlocks>False</AllowUnsafeBlocks>
<DefineConstants>DEBUG</DefineConstants>
<Optimize>True</Optimize>
<DebugType>full</DebugType>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.VisualStudio.Threading" Version="17.6.40" />
<PackageReference Include="Microsoft.VisualStudio.Threading.Analyzers" Version="17.6.40">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Portable.BouncyCastle" Version="1.9.0" />
</ItemGroup>
<ItemGroup>
<EditorConfigFiles Remove="C:\Users\Trevor\source\repos\MXM3-nocawaitfalse\SecuCore\.editorconfig" />
</ItemGroup>
</Project>