Initial Commit

This commit is contained in:
glax 2024-04-15 19:45:12 +02:00
commit 5314922086
6 changed files with 49 additions and 0 deletions

5
.gitignore vendored Normal file
View File

@ -0,0 +1,5 @@
bin/
obj/
/packages/
riderModule.iml
/_ReSharper.Caches/

13
.idea/.idea.OBSBlur/.idea/.gitignore vendored Normal file
View File

@ -0,0 +1,13 @@
# Default ignored files
/shelf/
/workspace.xml
# Rider ignored files
/modules.xml
/contentModel.xml
/projectSettingsUpdater.xml
/.idea.OBSBlur.iml
# Editor-based HTTP Client requests
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml

View File

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="Encoding" addBOMForNewFiles="with BOM under Windows, with no BOM otherwise" />
</project>

16
OBSBlur.sln Normal file
View File

@ -0,0 +1,16 @@

Microsoft Visual Studio Solution File, Format Version 12.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OBSBlur", "OBSBlur\OBSBlur.csproj", "{1A905B44-0482-4848-AB75-6FFD7753BD52}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{1A905B44-0482-4848-AB75-6FFD7753BD52}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1A905B44-0482-4848-AB75-6FFD7753BD52}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1A905B44-0482-4848-AB75-6FFD7753BD52}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1A905B44-0482-4848-AB75-6FFD7753BD52}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal

10
OBSBlur/OBSBlur.csproj Normal file
View File

@ -0,0 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>

1
OBSBlur/Program.cs Normal file
View File

@ -0,0 +1 @@