Skip to content

Commit

Permalink
Organize attributes in .csproj files
Browse files Browse the repository at this point in the history
  • Loading branch information
pongo1231 committed Nov 12, 2023
1 parent ec32f00 commit 7c252aa
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 14 deletions.
11 changes: 6 additions & 5 deletions ConfigApp/ConfigApp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,18 @@
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>false</SelfContained>
<StartupObject>ConfigApp.EntryPoint</StartupObject>
<SupportedOSPlatformVersion>7.0</SupportedOSPlatformVersion>
<UseWPF>true</UseWPF>
<PlatformTarget>x64</PlatformTarget>
<StartupObject>ConfigApp.EntryPoint</StartupObject>
<PublishSingleFile>true</PublishSingleFile>
<EnableWindowsTargeting>true</EnableWindowsTargeting>
<AssemblyName>ChaosModVConfig</AssemblyName>
<ApplicationIcon>favicon.ico</ApplicationIcon>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>false</SelfContained>
</PropertyGroup>

<ItemGroup>
Expand Down
14 changes: 5 additions & 9 deletions TwitchChatVotingProxy/TwitchChatVotingProxy.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,13 @@
<TargetFramework>net6.0-windows</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>false</SelfContained>
<StartupObject>TwitchChatVotingProxy.TwitchChatVotingProxy</StartupObject>
<SupportedOSPlatformVersion>7.0</SupportedOSPlatformVersion>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>false</SelfContained>
<StartupObject>TwitchChatVotingProxy.TwitchChatVotingProxy</StartupObject>
<SupportedOSPlatformVersion>7.0</SupportedOSPlatformVersion>
</PropertyGroup>

<ItemGroup>
<None Remove="DiscordVotingReceiver.cs~RFedbc88.TMP" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Discord.Net" Version="3.12.0" />
<PackageReference Include="Fleck" Version="1.2.0" />
Expand Down

0 comments on commit 7c252aa

Please sign in to comment.