Skip to content

Commit

Permalink
Reorganize and cleanup files
Browse files Browse the repository at this point in the history
  • Loading branch information
Retr0-01 committed Jan 20, 2023
1 parent 5900620 commit f079e16
Show file tree
Hide file tree
Showing 12 changed files with 17 additions and 144 deletions.
128 changes: 0 additions & 128 deletions CODE_OF_CONDUCT.md

This file was deleted.

8 changes: 0 additions & 8 deletions GlobalSuppressions.cs

This file was deleted.

1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ All you have to do now is run the exe and you should be good to go!
**[SETUP] CS:GO installation path not found! Aborting...**
> If for whatever reason the application couldn't find your game installation path or write the config file needed, you need to manually copy the ``gamestate_integration_discord-rp.cfg`` file and paste it *inside* the ``cfg`` folder of your CS:GO installation.
> Example path: `C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\csgo\cfg`
>
## Credits
Huge thanks to the following devs/teams for creating some of the packages/tools used.
- [Newtonsoft](https://www.newtonsoft.com/json) for Json.NET
Expand Down
File renamed without changes.
16 changes: 12 additions & 4 deletions CSGO-Discord-RP.csproj → src/CSGO-Discord-RP.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,21 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<RootNamespace>CSGODiscordRP</RootNamespace>
<TargetFramework>net6.0-windows10.0.22621.0</TargetFramework>
<RootNamespace>RichPresenceApp</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>annotations</Nullable>
<IsPublishable>True</IsPublishable>
<IsPublishable>False</IsPublishable>
<ApplicationIcon>favicon.ico</ApplicationIcon>
<DebugType>none</DebugType>
<ProduceReferenceAssembly>False</ProduceReferenceAssembly>
<StartupObject>CSGODiscordRP.Program</StartupObject>
<StartupObject>RichPresenceApp.Program</StartupObject>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'" />

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'" />

<ItemGroup>
<None Remove=".gitattributes" />
<None Remove=".gitignore" />
Expand All @@ -23,6 +27,10 @@
<None Remove="README.md" />
</ItemGroup>

<ItemGroup>
<Content Include="favicon.ico" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="DiscordRichPresence" Version="1.0.175" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/Classes/ApplicationSetup.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using Microsoft.Win32;
using System.Text.RegularExpressions;

namespace CSGODiscordRP;
namespace RichPresenceApp;

public static class ApplicationSetup
{
Expand Down
2 changes: 1 addition & 1 deletion src/Classes/DiscordManager.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using DiscordRPC;
using DiscordRPC.Logging;

namespace CSGODiscordRP;
namespace RichPresenceApp;

public static class DiscordManager
{
Expand Down
2 changes: 1 addition & 1 deletion src/Classes/HttpServer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System.Net;
using System.Text;

namespace CSGODiscordRP;
namespace RichPresenceApp;

public class HttpServer
{
Expand Down
2 changes: 1 addition & 1 deletion src/Program.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace CSGODiscordRP;
namespace RichPresenceApp;

public class Program
{
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit f079e16

Please sign in to comment.