Compare commits

...

2 Commits
main ... v2.2

Author SHA1 Message Date
893b320625 Removed the .sln file from the git.
It was causing cli build errors because the "Testing" project doesn't exist. Now it works first try.
2022-11-02 07:36:25 -04:00
7594da941f gitignore for this version 2022-10-31 13:06:28 -04:00
5 changed files with 60 additions and 7 deletions

17
.gitignore vendored
View File

@ -1,12 +1,15 @@
# Visual Studio stuff
*.sln
*.csproj
# Useless Visual Studio stuff
/Nerd_STF/.vs/
*.sln
# Build Stuff
/Nerd_STF/obj
/Nerd_STF/bin/Debug
/Nerd_STF/bin/Release/net6.0/Nerd_STF.deps.json
/Nerd_STF/bin/Release/net6.0/Nerd_STF.dll
/Nerd_STF/bin/Release/net6.0/Nerd_STF.pdb
/Nerd_STF/bin
*.dll
*.pdb
# Testing project
/Testing
# Nuget
/Nerd_STF/LICENSE

BIN
Extras/Logo Square.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

4
Nerd_STF/.editorconfig Normal file
View File

@ -0,0 +1,4 @@
[*.cs]
# CA1050: Declare types in namespaces
dotnet_diagnostic.CA1050.severity = warning

46
Nerd_STF/Nerd_STF.csproj Normal file
View File

@ -0,0 +1,46 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>Nerd_STF</RootNamespace>
<AssemblyName>Nerd_STF</AssemblyName>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Authors>That_One_Nerd</Authors>
<Description>Nerd_STF is a C# library that runs on .Net 6.0, and contains added structures and classes I feel would help the default C# library package.</Description>
<Copyright>Copyright (c) 2022 That_One_Nerd</Copyright>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/That-One-Nerd/Nerd_STF</RepositoryUrl>
<AssemblyVersion>2.2.0</AssemblyVersion>
<PackageTags>c#;csharp;c sharp;math;mathematics;mathametics;maths;color;rgb;rgba;cmyk;cmyka;hsv;hsva;calculus;linear algebra;linalg;linearalgebra;matrix;matrix2x2;matrix 2x2;matrix3x3;matrix 3x3;matrix4x4;matrix 4x4;matrix multiplication;vector;vector2d;vector3d;vector2;vector3;float2;float3;float4;int2;int3;int4;angle;geometry;vert;line;polygon;triangle;quadrilateral;sphere;circle;number system;numbersystem;complex numbers;complex;2d numbers;2dnumbers;quaternions;4d numbers;4dnumbers</PackageTags>
<Version>2.2.0</Version>
<Product>Nerd_STF</Product>
<PackageId>Nerd_STF</PackageId>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>Logo Square.png</PackageIcon>
<PackageReleaseNotes>This update adds many types of graphics-based objects, as well as some math functions and constants.</PackageReleaseNotes>
<PackageProjectUrl>https://github.com/That-One-Nerd/Nerd_STF</PackageProjectUrl>
<GenerateDocumentationFile>False</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<None Include="..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\Extras\Logo Square.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>