Add project files.

This commit is contained in:
rafael1209
2023-12-10 23:16:53 +02:00
parent ab158b6236
commit 52c7bdffe1
20 changed files with 4599 additions and 0 deletions

29
Discord Custom Status.sln Normal file
View File

@@ -0,0 +1,29 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.4.33403.182
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Discord Custom Status", "Discord Custom Status\Discord Custom Status.csproj", "{B07BB826-E59D-4B9C-9234-9465893293A6}"
EndProject
Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "Setup", "Setup\Setup.vdproj", "{76643B4C-A716-4C4C-8307-506E23C038C7}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{B07BB826-E59D-4B9C-9234-9465893293A6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B07BB826-E59D-4B9C-9234-9465893293A6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B07BB826-E59D-4B9C-9234-9465893293A6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B07BB826-E59D-4B9C-9234-9465893293A6}.Release|Any CPU.Build.0 = Release|Any CPU
{76643B4C-A716-4C4C-8307-506E23C038C7}.Debug|Any CPU.ActiveCfg = Debug
{76643B4C-A716-4C4C-8307-506E23C038C7}.Release|Any CPU.ActiveCfg = Release
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {D3430E5B-7E90-495C-BBF4-13920447DABB}
EndGlobalSection
EndGlobal

View File

@@ -0,0 +1,69 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="Discord_Custom_Status.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
</sectionGroup>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
</startup>
<userSettings>
<Discord_Custom_Status.Properties.Settings>
<setting name="ClientID" serializeAs="String">
<value>1166755301312180294</value>
</setting>
<setting name="LargeImageKey" serializeAs="String">
<value>_premium_</value>
</setting>
<setting name="LargeImageText" serializeAs="String">
<value>Premium Plus</value>
</setting>
<setting name="SmallImageKey" serializeAs="String">
<value>verified</value>
</setting>
<setting name="SmallImageText" serializeAs="String">
<value>Verified</value>
</setting>
<setting name="Details" serializeAs="String">
<value>Online Shop</value>
</setting>
<setting name="State" serializeAs="String">
<value>premiumplus-il.com</value>
</setting>
<setting name="PartyIn" serializeAs="String">
<value>1</value>
</setting>
<setting name="PartyMax" serializeAs="String">
<value>10</value>
</setting>
<setting name="Party" serializeAs="String">
<value>False</value>
</setting>
<setting name="Timer" serializeAs="String">
<value>False</value>
</setting>
<setting name="CustomClientID" serializeAs="String">
<value />
</setting>
<setting name="CustomLargeImgKey" serializeAs="String">
<value />
</setting>
<setting name="CustomLargeImgText" serializeAs="String">
<value />
</setting>
<setting name="CustomSmallImgKey" serializeAs="String">
<value />
</setting>
<setting name="CustomSmallImgText" serializeAs="String">
<value />
</setting>
<setting name="CustomDetails" serializeAs="String">
<value />
</setting>
<setting name="CustomState" serializeAs="String">
<value />
</setting>
</Discord_Custom_Status.Properties.Settings>
</userSettings>
</configuration>

View File

@@ -0,0 +1,103 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{B07BB826-E59D-4B9C-9234-9465893293A6}</ProjectGuid>
<OutputType>WinExe</OutputType>
<RootNamespace>Discord_Custom_Status</RootNamespace>
<AssemblyName>Discord Custom Status</AssemblyName>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>true</Deterministic>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="DiscordRPC, Version=1.2.1.24, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\DiscordRichPresence.1.2.1.24\lib\net45\DiscordRPC.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\packages\Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.DirectoryServices" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Deployment" />
<Reference Include="System.Drawing" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Form1.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="Form1.Designer.cs">
<DependentUpon>Form1.cs</DependentUpon>
</Compile>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Settings.cs" />
<EmbeddedResource Include="Form1.resx">
<DependentUpon>Form1.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
<SubType>Designer</SubType>
</EmbeddedResource>
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
<DesignTime>True</DesignTime>
</Compile>
<None Include="packages.config" />
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<Compile Include="Properties\Settings.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<Content Include="img\dslogo.ico" />
<None Include="img\logorafael.png" />
</ItemGroup>
<ItemGroup>
<None Include="img\pplogo.png" />
</ItemGroup>
<ItemGroup>
<None Include="img\verifylogo.png" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>

541
Discord Custom Status/Form1.Designer.cs generated Normal file
View File

@@ -0,0 +1,541 @@
namespace Discord_Custom_Status
{
partial class Form1
{
/// <summary>
/// Обязательная переменная конструктора.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Освободить все используемые ресурсы.
/// </summary>
/// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Код, автоматически созданный конструктором форм Windows
/// <summary>
/// Требуемый метод для поддержки конструктора — не изменяйте
/// содержимое этого метода с помощью редактора кода.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
this.runButton = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.detailsFild = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.smallImgKeyFild = new System.Windows.Forms.TextBox();
this.label6 = new System.Windows.Forms.Label();
this.largeImgKeyFild = new System.Windows.Forms.TextBox();
this.label7 = new System.Windows.Forms.Label();
this.smallImgTextFild = new System.Windows.Forms.TextBox();
this.label8 = new System.Windows.Forms.Label();
this.largeImgTextFild = new System.Windows.Forms.TextBox();
this.checkBox1 = new System.Windows.Forms.CheckBox();
this.label9 = new System.Windows.Forms.Label();
this.stateTextFild = new System.Windows.Forms.TextBox();
this.label4 = new System.Windows.Forms.Label();
this.label10 = new System.Windows.Forms.Label();
this.label11 = new System.Windows.Forms.Label();
this.label12 = new System.Windows.Forms.Label();
this.label13 = new System.Windows.Forms.Label();
this.textBox1 = new System.Windows.Forms.TextBox();
this.checkBox2 = new System.Windows.Forms.CheckBox();
this.label14 = new System.Windows.Forms.Label();
this.textBox2 = new System.Windows.Forms.TextBox();
this.timer = new System.Windows.Forms.Timer(this.components);
this.textBox3 = new System.Windows.Forms.TextBox();
this.label15 = new System.Windows.Forms.Label();
this.label16 = new System.Windows.Forms.Label();
this.label17 = new System.Windows.Forms.Label();
this.label18 = new System.Windows.Forms.Label();
this.button1 = new System.Windows.Forms.Button();
this.comboBox2 = new System.Windows.Forms.ComboBox();
this.ClientIDFild = new System.Windows.Forms.TextBox();
this.pictureBox2 = new System.Windows.Forms.PictureBox();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.SuspendLayout();
//
// runButton
//
this.runButton.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
this.runButton.Location = new System.Drawing.Point(318, 381);
this.runButton.Name = "runButton";
this.runButton.Size = new System.Drawing.Size(101, 38);
this.runButton.TabIndex = 0;
this.runButton.Text = "UPDATE";
this.runButton.UseVisualStyleBackColor = true;
this.runButton.Click += new System.EventHandler(this.runButton_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(9, 150);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(47, 13);
this.label1.TabIndex = 2;
this.label1.Text = "Client ID";
//
// label2
//
this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Right)));
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(251, 150);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(52, 13);
this.label2.TabIndex = 4;
this.label2.Text = "DETAILS";
//
// detailsFild
//
this.detailsFild.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Right)));
this.detailsFild.Location = new System.Drawing.Point(251, 169);
this.detailsFild.MaxLength = 100;
this.detailsFild.Name = "detailsFild";
this.detailsFild.Size = new System.Drawing.Size(168, 20);
this.detailsFild.TabIndex = 3;
this.detailsFild.Text = "Premium Plus";
this.detailsFild.TextChanged += new System.EventHandler(this.detailsFild_TextChanged);
//
// label3
//
this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Right)));
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(251, 328);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(109, 13);
this.label3.TabIndex = 6;
this.label3.Text = "START TIMESTAMP";
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(6, 328);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(103, 13);
this.label5.TabIndex = 16;
this.label5.Text = "SMALL IMAGE KEY";
//
// smallImgKeyFild
//
this.smallImgKeyFild.Location = new System.Drawing.Point(9, 344);
this.smallImgKeyFild.MaxLength = 100;
this.smallImgKeyFild.Name = "smallImgKeyFild";
this.smallImgKeyFild.Size = new System.Drawing.Size(168, 20);
this.smallImgKeyFild.TabIndex = 15;
this.smallImgKeyFild.Text = "verified";
//
// label6
//
this.label6.AutoSize = true;
this.label6.Location = new System.Drawing.Point(9, 211);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(104, 13);
this.label6.TabIndex = 14;
this.label6.Text = "LARGE IMAGE KEY";
//
// largeImgKeyFild
//
this.largeImgKeyFild.Location = new System.Drawing.Point(9, 229);
this.largeImgKeyFild.MaxLength = 100;
this.largeImgKeyFild.Name = "largeImgKeyFild";
this.largeImgKeyFild.Size = new System.Drawing.Size(168, 20);
this.largeImgKeyFild.TabIndex = 13;
this.largeImgKeyFild.Text = "_premium_";
//
// label7
//
this.label7.AutoSize = true;
this.label7.Location = new System.Drawing.Point(9, 383);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(110, 13);
this.label7.TabIndex = 12;
this.label7.Text = "SMALL IMAGE TEXT";
//
// smallImgTextFild
//
this.smallImgTextFild.Location = new System.Drawing.Point(12, 400);
this.smallImgTextFild.MaxLength = 100;
this.smallImgTextFild.Name = "smallImgTextFild";
this.smallImgTextFild.Size = new System.Drawing.Size(168, 20);
this.smallImgTextFild.TabIndex = 11;
this.smallImgTextFild.Text = "Verified";
//
// label8
//
this.label8.AutoSize = true;
this.label8.Location = new System.Drawing.Point(9, 271);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(111, 13);
this.label8.TabIndex = 10;
this.label8.Text = "LARGE IMAGE TEXT";
//
// largeImgTextFild
//
this.largeImgTextFild.Location = new System.Drawing.Point(12, 289);
this.largeImgTextFild.MaxLength = 100;
this.largeImgTextFild.Name = "largeImgTextFild";
this.largeImgTextFild.Size = new System.Drawing.Size(168, 20);
this.largeImgTextFild.TabIndex = 9;
this.largeImgTextFild.Text = "Premium Plus";
//
// checkBox1
//
this.checkBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Right)));
this.checkBox1.AutoSize = true;
this.checkBox1.Location = new System.Drawing.Point(366, 324);
this.checkBox1.Name = "checkBox1";
this.checkBox1.Size = new System.Drawing.Size(61, 17);
this.checkBox1.TabIndex = 17;
this.checkBox1.Text = "Disable";
this.checkBox1.UseVisualStyleBackColor = true;
this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
//
// label9
//
this.label9.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Right)));
this.label9.AutoSize = true;
this.label9.Location = new System.Drawing.Point(251, 211);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(42, 13);
this.label9.TabIndex = 24;
this.label9.Text = "STATE";
//
// stateTextFild
//
this.stateTextFild.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Right)));
this.stateTextFild.Location = new System.Drawing.Point(251, 229);
this.stateTextFild.MaxLength = 100;
this.stateTextFild.Name = "stateTextFild";
this.stateTextFild.Size = new System.Drawing.Size(168, 20);
this.stateTextFild.TabIndex = 23;
this.stateTextFild.Text = "https://premiumplus-il.com/";
this.stateTextFild.TextChanged += new System.EventHandler(this.stateTextFild_TextChanged);
//
// label4
//
this.label4.AutoSize = true;
this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.label4.Location = new System.Drawing.Point(93, 8);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(128, 20);
this.label4.TabIndex = 27;
this.label4.Text = "Custom Status";
//
// label10
//
this.label10.AutoSize = true;
this.label10.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.label10.Location = new System.Drawing.Point(93, 28);
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(173, 20);
this.label10.TabIndex = 28;
this.label10.Text = "Discord Custom Status";
//
// label11
//
this.label11.AutoSize = true;
this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.label11.Location = new System.Drawing.Point(93, 48);
this.label11.Name = "label11";
this.label11.Size = new System.Drawing.Size(105, 20);
this.label11.TabIndex = 29;
this.label11.Text = "By mr.rafaello";
//
// label12
//
this.label12.AutoSize = true;
this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.label12.Location = new System.Drawing.Point(93, 69);
this.label12.Name = "label12";
this.label12.Size = new System.Drawing.Size(110, 20);
this.label12.TabIndex = 30;
this.label12.Text = "Passed: 00:00";
//
// label13
//
this.label13.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Right)));
this.label13.AutoSize = true;
this.label13.Location = new System.Drawing.Point(251, 271);
this.label13.Name = "label13";
this.label13.Size = new System.Drawing.Size(43, 13);
this.label13.TabIndex = 31;
this.label13.Text = "PARTY";
//
// textBox1
//
this.textBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Right)));
this.textBox1.Location = new System.Drawing.Point(254, 289);
this.textBox1.MaxLength = 4;
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(40, 20);
this.textBox1.TabIndex = 32;
this.textBox1.Text = "1";
this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
//
// checkBox2
//
this.checkBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Right)));
this.checkBox2.AutoSize = true;
this.checkBox2.Location = new System.Drawing.Point(300, 270);
this.checkBox2.Name = "checkBox2";
this.checkBox2.Size = new System.Drawing.Size(61, 17);
this.checkBox2.TabIndex = 33;
this.checkBox2.Text = "Disable";
this.checkBox2.UseVisualStyleBackColor = true;
this.checkBox2.CheckedChanged += new System.EventHandler(this.checkBox2_CheckedChanged);
//
// label14
//
this.label14.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Right)));
this.label14.AutoSize = true;
this.label14.Location = new System.Drawing.Point(300, 292);
this.label14.Name = "label14";
this.label14.Size = new System.Drawing.Size(21, 13);
this.label14.TabIndex = 34;
this.label14.Text = "OF";
//
// textBox2
//
this.textBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Right)));
this.textBox2.Location = new System.Drawing.Point(327, 289);
this.textBox2.MaxLength = 4;
this.textBox2.Name = "textBox2";
this.textBox2.Size = new System.Drawing.Size(40, 20);
this.textBox2.TabIndex = 35;
this.textBox2.Text = "10";
this.textBox2.TextChanged += new System.EventHandler(this.textBox2_TextChanged);
//
// timer
//
this.timer.Enabled = true;
this.timer.Interval = 1000;
this.timer.Tick += new System.EventHandler(this.timer_Tick);
//
// textBox3
//
this.textBox3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Right)));
this.textBox3.Location = new System.Drawing.Point(318, 344);
this.textBox3.MaxLength = 2;
this.textBox3.Name = "textBox3";
this.textBox3.Size = new System.Drawing.Size(29, 20);
this.textBox3.TabIndex = 36;
this.textBox3.Text = "0";
//
// label15
//
this.label15.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Right)));
this.label15.AutoSize = true;
this.label15.Location = new System.Drawing.Point(353, 347);
this.label15.Name = "label15";
this.label15.Size = new System.Drawing.Size(59, 13);
this.label15.TabIndex = 37;
this.label15.Text = "hour/s ago";
//
// label16
//
this.label16.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Right)));
this.label16.AutoSize = true;
this.label16.Location = new System.Drawing.Point(251, 347);
this.label16.Name = "label16";
this.label16.Size = new System.Drawing.Size(61, 13);
this.label16.TabIndex = 38;
this.label16.Text = "You started";
//
// label17
//
this.label17.AutoSize = true;
this.label17.Location = new System.Drawing.Point(227, 13);
this.label17.Name = "label17";
this.label17.Size = new System.Drawing.Size(37, 13);
this.label17.TabIndex = 39;
this.label17.Text = "v5.0.5";
//
// label18
//
this.label18.AutoSize = true;
this.label18.Location = new System.Drawing.Point(416, 8);
this.label18.Name = "label18";
this.label18.Size = new System.Drawing.Size(14, 13);
this.label18.TabIndex = 40;
this.label18.Text = "X";
this.label18.Click += new System.EventHandler(this.label18_Click);
this.label18.MouseEnter += new System.EventHandler(this.label18_MouseEnter);
this.label18.MouseLeave += new System.EventHandler(this.label18_MouseLeave);
//
// button1
//
this.button1.Location = new System.Drawing.Point(251, 381);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(61, 38);
this.button1.TabIndex = 42;
this.button1.Text = "Set Custom";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// comboBox2
//
this.comboBox2.FormattingEnabled = true;
this.comboBox2.Items.AddRange(new object[] {
"Premium Plus",
"Lionel Messi",
"Brawl Stars",
"Binance",
"custom app"});
this.comboBox2.Location = new System.Drawing.Point(7, 95);
this.comboBox2.Name = "comboBox2";
this.comboBox2.Size = new System.Drawing.Size(143, 21);
this.comboBox2.TabIndex = 44;
this.comboBox2.Text = "Select template";
this.comboBox2.SelectedIndexChanged += new System.EventHandler(this.comboBox2_SelectedIndexChanged);
//
// ClientIDFild
//
this.ClientIDFild.Location = new System.Drawing.Point(12, 169);
this.ClientIDFild.MaxLength = 100;
this.ClientIDFild.Name = "ClientIDFild";
this.ClientIDFild.Size = new System.Drawing.Size(138, 20);
this.ClientIDFild.TabIndex = 45;
this.ClientIDFild.Text = "1168313472384249986";
//
// pictureBox2
//
this.pictureBox2.Image = global::Discord_Custom_Status.Properties.Resources.verifylogo;
this.pictureBox2.Location = new System.Drawing.Point(67, 69);
this.pictureBox2.Name = "pictureBox2";
this.pictureBox2.Size = new System.Drawing.Size(20, 20);
this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pictureBox2.TabIndex = 26;
this.pictureBox2.TabStop = false;
//
// pictureBox1
//
this.pictureBox1.Image = global::Discord_Custom_Status.Properties.Resources.logorafael;
this.pictureBox1.Location = new System.Drawing.Point(7, 8);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(80, 80);
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pictureBox1.TabIndex = 25;
this.pictureBox1.TabStop = false;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(434, 441);
this.Controls.Add(this.ClientIDFild);
this.Controls.Add(this.comboBox2);
this.Controls.Add(this.button1);
this.Controls.Add(this.label18);
this.Controls.Add(this.label17);
this.Controls.Add(this.label16);
this.Controls.Add(this.label15);
this.Controls.Add(this.textBox3);
this.Controls.Add(this.textBox2);
this.Controls.Add(this.label14);
this.Controls.Add(this.checkBox2);
this.Controls.Add(this.textBox1);
this.Controls.Add(this.label13);
this.Controls.Add(this.label12);
this.Controls.Add(this.label11);
this.Controls.Add(this.label10);
this.Controls.Add(this.label4);
this.Controls.Add(this.pictureBox2);
this.Controls.Add(this.pictureBox1);
this.Controls.Add(this.label9);
this.Controls.Add(this.stateTextFild);
this.Controls.Add(this.checkBox1);
this.Controls.Add(this.label5);
this.Controls.Add(this.smallImgKeyFild);
this.Controls.Add(this.label6);
this.Controls.Add(this.largeImgKeyFild);
this.Controls.Add(this.label7);
this.Controls.Add(this.smallImgTextFild);
this.Controls.Add(this.label8);
this.Controls.Add(this.largeImgTextFild);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.detailsFild);
this.Controls.Add(this.label1);
this.Controls.Add(this.runButton);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximumSize = new System.Drawing.Size(450, 480);
this.MinimumSize = new System.Drawing.Size(450, 480);
this.Name = "Form1";
this.Text = "Discord Custom Status";
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button runButton;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox detailsFild;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.TextBox smallImgKeyFild;
private System.Windows.Forms.Label label6;
private System.Windows.Forms.TextBox largeImgKeyFild;
private System.Windows.Forms.Label label7;
private System.Windows.Forms.TextBox smallImgTextFild;
private System.Windows.Forms.Label label8;
private System.Windows.Forms.TextBox largeImgTextFild;
private System.Windows.Forms.CheckBox checkBox1;
private System.Windows.Forms.Label label9;
private System.Windows.Forms.TextBox stateTextFild;
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.PictureBox pictureBox2;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.Label label10;
private System.Windows.Forms.Label label11;
private System.Windows.Forms.Label label12;
private System.Windows.Forms.Label label13;
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.CheckBox checkBox2;
private System.Windows.Forms.Label label14;
private System.Windows.Forms.TextBox textBox2;
private System.Windows.Forms.Timer timer;
private System.Windows.Forms.TextBox textBox3;
private System.Windows.Forms.Label label15;
private System.Windows.Forms.Label label16;
private System.Windows.Forms.Label label17;
private System.Windows.Forms.Label label18;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.ComboBox comboBox2;
private System.Windows.Forms.TextBox ClientIDFild;
}
}

View File

@@ -0,0 +1,364 @@
using DiscordRPC;
using Microsoft.Win32;
using System;
using System.Drawing;
using System.Reflection.Emit;
using System.Windows.Forms;
using static System.Windows.Forms.VisualStyles.VisualStyleElement;
namespace Discord_Custom_Status
{
public partial class Form1 : Form
{
private DiscordRpcClient discordRpcClient;
public int secondss;
public string customClientID, customLargeImgKey, customSmallImgKey, customLargeImgText, customSmallImgText, customDetails, customState;
public Form1()
{
InitializeComponent();
LoadSettings(); // Load saved settings on form initialization
InitializeDiscordRpc();
AddToStartup();
}
private void AddToStartup()
{
try
{
RegistryKey registryKey = Registry.CurrentUser.OpenSubKey("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run", true);
// Specify the name you want to give to your program in the registry
string appName = "Discord_Custom_Status";
// Specify the path to your executable
string appPath = Application.ExecutablePath;
// Add the program to auto-start
registryKey.SetValue(appName, appPath);
}
catch (Exception ex)
{
// Handle any exceptions, such as insufficient permissions
Console.WriteLine($"Error adding to startup: {ex.Message}");
}
}
private void LoadSettings()
{
// Load saved settings
ClientIDFild.Text = Properties.Settings.Default.ClientID;
largeImgKeyFild.Text = Properties.Settings.Default.LargeImageKey;
largeImgTextFild.Text = Properties.Settings.Default.LargeImageText;
smallImgKeyFild.Text = Properties.Settings.Default.SmallImageKey;
smallImgTextFild.Text = Properties.Settings.Default.SmallImageText;
detailsFild.Text = Properties.Settings.Default.Details;
stateTextFild.Text = Properties.Settings.Default.State;
textBox1.Text = Properties.Settings.Default.PartyIn;
textBox2.Text = Properties.Settings.Default.PartyMax;
checkBox1.Checked = Properties.Settings.Default.Timer;
checkBox2.Checked = Properties.Settings.Default.Party;
customClientID = Properties.Settings.Default.CustomClientID;
customLargeImgKey = Properties.Settings.Default.LargeImageKey;
customLargeImgText = Properties.Settings.Default.LargeImageText;
customSmallImgKey = Properties.Settings.Default.SmallImageKey;
customSmallImgText = Properties.Settings.Default.SmallImageText;
customDetails = Properties.Settings.Default.CustomDetails;
customState= Properties.Settings.Default.CustomState;
}
private void SaveSettings()
{
// Save settings
Properties.Settings.Default.ClientID = ClientIDFild.Text;
Properties.Settings.Default.LargeImageKey = largeImgKeyFild.Text;
Properties.Settings.Default.LargeImageText = largeImgTextFild.Text;
Properties.Settings.Default.SmallImageKey = smallImgKeyFild.Text;
Properties.Settings.Default.SmallImageText = smallImgTextFild.Text;
Properties.Settings.Default.Details = detailsFild.Text;
Properties.Settings.Default.State = stateTextFild.Text;
Properties.Settings.Default.PartyIn = textBox1.Text;
Properties.Settings.Default.PartyMax = textBox2.Text;
Properties.Settings.Default.Timer= checkBox1.Checked;
Properties.Settings.Default.Party = checkBox2.Checked;
Properties.Settings.Default.CustomClientID = customClientID;
Properties.Settings.Default.CustomLargeImgKey = customLargeImgKey;
Properties.Settings.Default.CustomLargeImgText= customLargeImgText;
Properties.Settings.Default.CustomSmallImgText = customSmallImgKey;
Properties.Settings.Default.CustomSmallImgText= customSmallImgText;
Properties.Settings.Default.CustomDetails = customDetails;
Properties.Settings.Default.CustomState= customState;
Properties.Settings.Default.Save();
}
private void InitializeDiscordRpc()
{
discordRpcClient = new DiscordRpcClient(ClientIDFild.Text);
discordRpcClient.OnReady += (sender, e) =>
{
Console.WriteLine("Discord RPC is ready!");
};
discordRpcClient.OnPresenceUpdate += (sender, e) =>
{
Console.WriteLine($"Presence updated: {e.Presence}");
};
discordRpcClient.Initialize();
// Set initial presence
UpdatePresence();
}
private void UpdatePresence()
{
DateTime startTime = DateTime.UtcNow;
discordRpcClient.SetPresence(new RichPresence
{
Details = detailsFild.Text,
State = stateTextFild.Text,
Assets = new Assets
{
LargeImageKey = largeImgKeyFild.Text,
LargeImageText = largeImgTextFild.Text,
SmallImageKey = smallImgKeyFild.Text,
SmallImageText = smallImgTextFild.Text
},
Party = checkBox2.Checked ? null : new Party
{
ID = "123",
Size = int.Parse(textBox1.Text),
Max = int.Parse(textBox2.Text)
},
Timestamps = checkBox1.Checked ? null : new Timestamps { Start = DateTime.Now.AddHours(-(int.Parse(textBox3.Text)+2)) }
});
}
private void runButton_Click(object sender, EventArgs e)
{
// Dispose of the existing DiscordRpcClient
discordRpcClient.Dispose();
// Create a new DiscordRpcClient with the updated client ID
discordRpcClient = new DiscordRpcClient(ClientIDFild.Text);
// Initialize the new client
InitializeDiscordRpc();
// Update the presence details
UpdatePresence();
// Save the settings after the update
SaveSettings();
if (checkBox1.Checked)
{
timer.Enabled = false;
secondss = int.Parse(textBox3.Text)*3600;
label12.Text = "Passed 00:00";
}
else
{
timer.Enabled = true;
secondss = int.Parse(textBox3.Text) * 3600;
label12.Text = "Passed 00:00";
}
}
private void checkBox1_CheckedChanged(object sender, EventArgs e)
{
label12.Visible = !checkBox1.Checked;
label16.Enabled= !checkBox1.Checked;
textBox3.Enabled = !checkBox1.Checked;
label15.Enabled= !checkBox1.Checked;
}
private void detailsFild_TextChanged(object sender, EventArgs e)
{
label10.Text = detailsFild.Text;
}
private void stateTextFild_TextChanged(object sender, EventArgs e)
{
if (!checkBox2.Checked)
{
label11.Text = stateTextFild.Text + " (" + textBox1.Text + " of " + textBox2.Text + ")";
}
else
{
label11.Text = stateTextFild.Text;
}
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
label11.Text = stateTextFild.Text+" ("+textBox1.Text+" of "+textBox2.Text+")";
if (textBox1.Text == "" || textBox2.Text == "")
{
textBox1.Text = "1";
textBox2.Text = "2";
}
else if (int.Parse(textBox1.Text)>int.Parse(textBox2.Text))
{
MessageBox.Show("The size of the group must be larger than the size of the participants!");
textBox1.ForeColor = Color.Red;
textBox1.Text = 0.ToString();
}
}
private void textBox2_TextChanged(object sender, EventArgs e)
{
label11.Text = stateTextFild.Text + " (" + textBox1.Text + " of " + textBox2.Text + ")";
if (textBox1.Text==""||textBox2.Text=="")
{
textBox1.Text = "1";
textBox2.Text = "2";
}
else if (int.Parse(textBox1.Text) > int.Parse(textBox2.Text))
{
MessageBox.Show("The size of the group must be larger than the size of the participants!");
textBox2.ForeColor = Color.Red;
textBox2.Text = 9999.ToString();
}
}
private void checkBox2_CheckedChanged(object sender, EventArgs e)
{
if (!checkBox2.Checked)
{
label11.Text = stateTextFild.Text + " (" + textBox1.Text + " of " + textBox2.Text + ")";
textBox1.Enabled = true;
textBox2.Enabled = true;
label14.Enabled = true;
}
else
{
label11.Text = stateTextFild.Text;
textBox1.Enabled = false;
textBox2.Enabled = false;
label14.Enabled= false;
}
}
private void timer_Tick(object sender, EventArgs e)
{
secondss++;
int totalSeconds = secondss;
int hours = totalSeconds / 3600;
int remainingSeconds = totalSeconds % 3600;
int minutes = remainingSeconds / 60;
int seconds = remainingSeconds % 60;
if (secondss>3600)
{
label12.Text = String.Format("Passed {0:D2}:{1:D2}:{2:D2}", hours, minutes, seconds);
}
else
{
label12.Text = String.Format("Passed {0:D2}:{1:D2}", minutes, seconds);
}
}
private void label18_Click(object sender, EventArgs e)
{
this.Hide();
}
private void label18_MouseEnter(object sender, EventArgs e)
{
label18.BackColor = Color.Red;
}
private void label18_MouseLeave(object sender, EventArgs e)
{
label18.BackColor = Color.White;
}
private void button1_Click(object sender, EventArgs e)
{
customClientID = ClientIDFild.Text;
customLargeImgKey = largeImgKeyFild.Text;
customLargeImgText = largeImgTextFild.Text;
customSmallImgKey = smallImgKeyFild.Text;
customSmallImgText = smallImgTextFild.Text;
customDetails = detailsFild.Text;
customState = stateTextFild.Text;
SaveSettings();
}
private void comboBox2_SelectedIndexChanged(object sender, EventArgs e)
{
if (comboBox2.SelectedIndex==0)
{
label4.Text = "Premium Plus";
ClientIDFild.Text = "1166755301312180294";
largeImgKeyFild.Text = "_premium_";
largeImgTextFild.Text = "Premium Plus IL";
smallImgKeyFild.Text = "verified";
smallImgTextFild.Text = "Verified";
detailsFild.Text = "Buy cheap premium services";
stateTextFild.Text = "premiumplus-il.com";
pictureBox1.Load("https://cdn.discordapp.com/app-assets/1166755301312180294/1166769710742917190.png");
pictureBox2.Load("https://cdn.discordapp.com/app-assets/1166755301312180294/1166772103626895441.png");
}
else if (comboBox2.SelectedIndex == 1)
{
label4.Text = "Lionel Messi";
ClientIDFild.Text = "1168172477839589436";
largeImgKeyFild.Text = "messi";
largeImgTextFild.Text = "Lionel Messi";
smallImgKeyFild.Text = "goldball";
smallImgTextFild.Text = "Gold Ball";
detailsFild.Text = "Messi🐐";
stateTextFild.Text = "The best soccer player in the world!";
pictureBox1.Load("https://cdn.discordapp.com/app-assets/1168172477839589436/1168322339348414604.png");
pictureBox2.Load("https://cdn.discordapp.com/app-assets/1168172477839589436/1168173347436249178.png");
}
else if (comboBox2.SelectedIndex == 2)
{
label4.Text = "Brawl Stars";
ClientIDFild.Text = "1168312406804537414";
largeImgKeyFild.Text = "brawlstars";
largeImgTextFild.Text = "Brawl Stars";
smallImgKeyFild.Text = "ball";
smallImgTextFild.Text = "BrawlBall";
detailsFild.Text = "In Lobby with Rafaello";
stateTextFild.Text = "BrawlBall";
pictureBox1.Load("https://cdn.discordapp.com/app-assets/1168312406804537414/1168312752851402852.png");
pictureBox2.Load("https://cdn.discordapp.com/app-assets/1168312406804537414/1168332012755615824.png");
}
else if (comboBox2.SelectedIndex == 3)
{
label4.Text = "Binance";
ClientIDFild.Text = "1168313472384249986";
largeImgKeyFild.Text = "binance";
largeImgTextFild.Text = "Binance";
smallImgKeyFild.Text = "bitcoin";
smallImgTextFild.Text = "Bitcoin";
detailsFild.Text = "Trading";
stateTextFild.Text = "Bitcoin";
pictureBox1.Load("https://cdn.discordapp.com/app-assets/1168313472384249986/1168313517422682144.png");
pictureBox2.Load("https://cdn.discordapp.com/app-assets/1168313472384249986/1168324184213037136.png");
}
else if (comboBox2.SelectedIndex == 4)
{
label4.Text = "Custom";
ClientIDFild.Text = customClientID;
largeImgKeyFild.Text = customLargeImgKey;
largeImgTextFild.Text = customLargeImgText;
smallImgKeyFild.Text = customSmallImgKey;
smallImgTextFild.Text = customSmallImgText;
detailsFild.Text = customDetails;
stateTextFild.Text = customState;
pictureBox1.Load("https://htmlcolorcodes.com/assets/images/colors/steel-gray-color-solid-background-1920x1080.png");
pictureBox2.Load("https://images.unsplash.com/flagged/photo-1593005510329-8a4035a7238f?q=80&w=1000&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxleHBsb3JlLWZlZWR8NXx8fGVufDB8fHx8fA%3D%3D");
}
}
}
}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Discord_Custom_Status
{
internal static class Program
{
/// <summary>
/// Главная точка входа для приложения.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}

View File

@@ -0,0 +1,36 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// Общие сведения об этой сборке предоставляются следующим набором
// набора атрибутов. Измените значения этих атрибутов для изменения сведений,
// связанных со сборкой.
[assembly: AssemblyTitle("Discord Custom Status")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Discord Custom Status")]
[assembly: AssemblyCopyright("Copyright © 2023")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Установка значения False для параметра ComVisible делает типы в этой сборке невидимыми
// для компонентов COM. Если необходимо обратиться к типу в этой сборке через
// COM, следует установить атрибут ComVisible в TRUE для этого типа.
[assembly: ComVisible(false)]
// Следующий GUID служит для идентификации библиотеки типов, если этот проект будет видимым для COM
[assembly: Guid("b07bb826-e59d-4b9c-9234-9465893293a6")]
// Сведения о версии сборки состоят из указанных ниже четырех значений:
//
// Основной номер версии
// Дополнительный номер версии
// Номер сборки
// Редакция
//
// Можно задать все значения или принять номера сборки и редакции по умолчанию
// используя "*", как показано ниже:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

View File

@@ -0,0 +1,93 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Discord_Custom_Status.Properties {
using System;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Resources {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Resources() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Discord_Custom_Status.Properties.Resources", typeof(Resources).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap logorafael {
get {
object obj = ResourceManager.GetObject("logorafael", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap pplogo {
get {
object obj = ResourceManager.GetObject("pplogo", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap verifylogo {
get {
object obj = ResourceManager.GetObject("verifylogo", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
}
}

View File

@@ -0,0 +1,130 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="pplogo" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\img\pplogo.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="verifylogo" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\img\verifylogo.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="logorafael" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\img\logorafael.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
</root>

View File

@@ -0,0 +1,242 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Discord_Custom_Status.Properties {
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "17.4.0.0")]
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
public static Settings Default {
get {
return defaultInstance;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("1166755301312180294")]
public string ClientID {
get {
return ((string)(this["ClientID"]));
}
set {
this["ClientID"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("_premium_")]
public string LargeImageKey {
get {
return ((string)(this["LargeImageKey"]));
}
set {
this["LargeImageKey"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("Premium Plus")]
public string LargeImageText {
get {
return ((string)(this["LargeImageText"]));
}
set {
this["LargeImageText"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("verified")]
public string SmallImageKey {
get {
return ((string)(this["SmallImageKey"]));
}
set {
this["SmallImageKey"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("Verified")]
public string SmallImageText {
get {
return ((string)(this["SmallImageText"]));
}
set {
this["SmallImageText"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("Online Shop")]
public string Details {
get {
return ((string)(this["Details"]));
}
set {
this["Details"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("premiumplus-il.com")]
public string State {
get {
return ((string)(this["State"]));
}
set {
this["State"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("1")]
public string PartyIn {
get {
return ((string)(this["PartyIn"]));
}
set {
this["PartyIn"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("10")]
public string PartyMax {
get {
return ((string)(this["PartyMax"]));
}
set {
this["PartyMax"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("False")]
public bool Party {
get {
return ((bool)(this["Party"]));
}
set {
this["Party"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("False")]
public bool Timer {
get {
return ((bool)(this["Timer"]));
}
set {
this["Timer"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("")]
public string CustomClientID {
get {
return ((string)(this["CustomClientID"]));
}
set {
this["CustomClientID"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("")]
public string CustomLargeImgKey {
get {
return ((string)(this["CustomLargeImgKey"]));
}
set {
this["CustomLargeImgKey"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("")]
public string CustomLargeImgText {
get {
return ((string)(this["CustomLargeImgText"]));
}
set {
this["CustomLargeImgText"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("")]
public string CustomSmallImgKey {
get {
return ((string)(this["CustomSmallImgKey"]));
}
set {
this["CustomSmallImgKey"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("")]
public string CustomSmallImgText {
get {
return ((string)(this["CustomSmallImgText"]));
}
set {
this["CustomSmallImgText"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("")]
public string CustomDetails {
get {
return ((string)(this["CustomDetails"]));
}
set {
this["CustomDetails"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("")]
public string CustomState {
get {
return ((string)(this["CustomState"]));
}
set {
this["CustomState"] = value;
}
}
}
}

View File

@@ -0,0 +1,60 @@
<?xml version='1.0' encoding='utf-8'?>
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)" GeneratedClassNamespace="Discord_Custom_Status.Properties" GeneratedClassName="Settings">
<Profiles />
<Settings>
<Setting Name="ClientID" Type="System.String" Scope="User">
<Value Profile="(Default)">1166755301312180294</Value>
</Setting>
<Setting Name="LargeImageKey" Type="System.String" Scope="User">
<Value Profile="(Default)">_premium_</Value>
</Setting>
<Setting Name="LargeImageText" Type="System.String" Scope="User">
<Value Profile="(Default)">Premium Plus</Value>
</Setting>
<Setting Name="SmallImageKey" Type="System.String" Scope="User">
<Value Profile="(Default)">verified</Value>
</Setting>
<Setting Name="SmallImageText" Type="System.String" Scope="User">
<Value Profile="(Default)">Verified</Value>
</Setting>
<Setting Name="Details" Type="System.String" Scope="User">
<Value Profile="(Default)">Online Shop</Value>
</Setting>
<Setting Name="State" Type="System.String" Scope="User">
<Value Profile="(Default)">premiumplus-il.com</Value>
</Setting>
<Setting Name="PartyIn" Type="System.String" Scope="User">
<Value Profile="(Default)">1</Value>
</Setting>
<Setting Name="PartyMax" Type="System.String" Scope="User">
<Value Profile="(Default)">10</Value>
</Setting>
<Setting Name="Party" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">False</Value>
</Setting>
<Setting Name="Timer" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">False</Value>
</Setting>
<Setting Name="CustomClientID" Type="System.String" Scope="User">
<Value Profile="(Default)" />
</Setting>
<Setting Name="CustomLargeImgKey" Type="System.String" Scope="User">
<Value Profile="(Default)" />
</Setting>
<Setting Name="CustomLargeImgText" Type="System.String" Scope="User">
<Value Profile="(Default)" />
</Setting>
<Setting Name="CustomSmallImgKey" Type="System.String" Scope="User">
<Value Profile="(Default)" />
</Setting>
<Setting Name="CustomSmallImgText" Type="System.String" Scope="User">
<Value Profile="(Default)" />
</Setting>
<Setting Name="CustomDetails" Type="System.String" Scope="User">
<Value Profile="(Default)" />
</Setting>
<Setting Name="CustomState" Type="System.String" Scope="User">
<Value Profile="(Default)" />
</Setting>
</Settings>
</SettingsFile>

View File

@@ -0,0 +1,28 @@
namespace Discord_Custom_Status.Properties {
// This class allows you to handle specific events on the settings class:
// The SettingChanging event is raised before a setting's value is changed.
// The PropertyChanged event is raised after a setting's value is changed.
// The SettingsLoaded event is raised after the setting values are loaded.
// The SettingsSaving event is raised before the setting values are saved.
internal sealed partial class Settings {
public Settings() {
// // To add event handlers for saving and changing settings, uncomment the lines below:
//
// this.SettingChanging += this.SettingChangingEventHandler;
//
// this.SettingsSaving += this.SettingsSavingEventHandler;
//
}
private void SettingChangingEventHandler(object sender, System.Configuration.SettingChangingEventArgs e) {
// Add code to handle the SettingChangingEvent event here.
}
private void SettingsSavingEventHandler(object sender, System.ComponentModel.CancelEventArgs e) {
// Add code to handle the SettingsSaving event here.
}
}
}

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 108 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 789 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="DiscordRichPresence" version="1.2.1.24" targetFramework="net472" />
<package id="Newtonsoft.Json" version="13.0.1" targetFramework="net472" />
</packages>

904
Setup/Setup.vdproj Normal file
View File

@@ -0,0 +1,904 @@
"DeployProject"
{
"VSVersion" = "3:800"
"ProjectType" = "8:{978C614F-708E-4E1A-B201-565925725DBA}"
"IsWebType" = "8:FALSE"
"ProjectName" = "8:DCS - Installer"
"LanguageId" = "3:1033"
"CodePage" = "3:1252"
"UILanguageId" = "3:1033"
"SccProjectName" = "8:"
"SccLocalPath" = "8:"
"SccAuxPath" = "8:"
"SccProvider" = "8:"
"Hierarchy"
{
"Entry"
{
"MsmKey" = "8:_50113305B6062D444BD1C3F26077040F"
"OwnerKey" = "8:_ADC92BEB793C49CE98493488B9A08087"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
"MsmKey" = "8:_A1001BDCBC16260D33A08E85766E378D"
"OwnerKey" = "8:_50113305B6062D444BD1C3F26077040F"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
"MsmKey" = "8:_A1001BDCBC16260D33A08E85766E378D"
"OwnerKey" = "8:_ADC92BEB793C49CE98493488B9A08087"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
"MsmKey" = "8:_ADC92BEB793C49CE98493488B9A08087"
"OwnerKey" = "8:_UNDEFINED"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
"MsmKey" = "8:_CAE156FDC58747C99CAC2B74B508AF1B"
"OwnerKey" = "8:_UNDEFINED"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
"MsmKey" = "8:_F45C1C25169CB17B03217A064DCD993D"
"OwnerKey" = "8:_ADC92BEB793C49CE98493488B9A08087"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
"MsmKey" = "8:_UNDEFINED"
"OwnerKey" = "8:_ADC92BEB793C49CE98493488B9A08087"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
"MsmKey" = "8:_UNDEFINED"
"OwnerKey" = "8:_50113305B6062D444BD1C3F26077040F"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
"MsmKey" = "8:_UNDEFINED"
"OwnerKey" = "8:_A1001BDCBC16260D33A08E85766E378D"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
"MsmKey" = "8:_UNDEFINED"
"OwnerKey" = "8:_F45C1C25169CB17B03217A064DCD993D"
"MsmSig" = "8:_UNDEFINED"
}
}
"Configurations"
{
"Debug"
{
"DisplayName" = "8:Debug"
"IsDebugOnly" = "11:TRUE"
"IsReleaseOnly" = "11:FALSE"
"OutputFilename" = "8:Debug\\Setup.msi"
"PackageFilesAs" = "3:2"
"PackageFileSize" = "3:-2147483648"
"CabType" = "3:1"
"Compression" = "3:2"
"SignOutput" = "11:FALSE"
"CertificateFile" = "8:"
"PrivateKeyFile" = "8:"
"TimeStampServer" = "8:"
"InstallerBootstrapper" = "3:2"
"BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}"
{
"Enabled" = "11:TRUE"
"PromptEnabled" = "11:TRUE"
"PrerequisitesLocation" = "2:1"
"Url" = "8:"
"ComponentsUrl" = "8:"
"Items"
{
"{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:.NETFramework,Version=v4.7.2"
{
"Name" = "8:Microsoft .NET Framework 4.7.2 (x86 and x64)"
"ProductCode" = "8:.NETFramework,Version=v4.7.2"
}
}
}
}
"Release"
{
"DisplayName" = "8:Release"
"IsDebugOnly" = "11:FALSE"
"IsReleaseOnly" = "11:TRUE"
"OutputFilename" = "8:Release\\Setup.msi"
"PackageFilesAs" = "3:2"
"PackageFileSize" = "3:-2147483648"
"CabType" = "3:1"
"Compression" = "3:2"
"SignOutput" = "11:FALSE"
"CertificateFile" = "8:"
"PrivateKeyFile" = "8:"
"TimeStampServer" = "8:"
"InstallerBootstrapper" = "3:2"
"BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}"
{
"Enabled" = "11:TRUE"
"PromptEnabled" = "11:TRUE"
"PrerequisitesLocation" = "2:1"
"Url" = "8:"
"ComponentsUrl" = "8:"
"Items"
{
"{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:.NETFramework,Version=v4.7.2"
{
"Name" = "8:Microsoft .NET Framework 4.7.2 (x86 and x64)"
"ProductCode" = "8:.NETFramework,Version=v4.7.2"
}
}
}
}
}
"Deployable"
{
"CustomAction"
{
}
"DefaultFeature"
{
"Name" = "8:DefaultFeature"
"Title" = "8:"
"Description" = "8:"
}
"ExternalPersistence"
{
"LaunchCondition"
{
"{A06ECF26-33A3-4562-8140-9B0E340D4F24}:_5A82CBDE24204A04B4E336E6AF148B1B"
{
"Name" = "8:.NET Framework"
"Message" = "8:[VSDNETMSG]"
"FrameworkVersion" = "8:.NETFramework,Version=v4.7.2"
"AllowLaterVersions" = "11:FALSE"
"InstallUrl" = "8:http://go.microsoft.com/fwlink/?LinkId=863262"
}
}
}
"File"
{
"{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_50113305B6062D444BD1C3F26077040F"
{
"AssemblyRegister" = "3:1"
"AssemblyIsInGAC" = "11:FALSE"
"AssemblyAsmDisplayName" = "8:DiscordRPC, Version=1.2.1.24, Culture=neutral, processorArchitecture=MSIL"
"ScatterAssemblies"
{
"_50113305B6062D444BD1C3F26077040F"
{
"Name" = "8:DiscordRPC.dll"
"Attributes" = "3:512"
}
}
"SourcePath" = "8:DiscordRPC.dll"
"TargetName" = "8:"
"Tag" = "8:"
"Folder" = "8:_61666FF4F2D943F7B612A6534CD8C02E"
"Condition" = "8:"
"Transitive" = "11:FALSE"
"Vital" = "11:TRUE"
"ReadOnly" = "11:FALSE"
"Hidden" = "11:FALSE"
"System" = "11:FALSE"
"Permanent" = "11:FALSE"
"SharedLegacy" = "11:FALSE"
"PackageAs" = "3:1"
"Register" = "3:1"
"Exclude" = "11:FALSE"
"IsDependency" = "11:TRUE"
"IsolateTo" = "8:"
}
"{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A1001BDCBC16260D33A08E85766E378D"
{
"AssemblyRegister" = "3:1"
"AssemblyIsInGAC" = "11:FALSE"
"AssemblyAsmDisplayName" = "8:Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL"
"ScatterAssemblies"
{
"_A1001BDCBC16260D33A08E85766E378D"
{
"Name" = "8:Newtonsoft.Json.dll"
"Attributes" = "3:512"
}
}
"SourcePath" = "8:Newtonsoft.Json.dll"
"TargetName" = "8:"
"Tag" = "8:"
"Folder" = "8:_61666FF4F2D943F7B612A6534CD8C02E"
"Condition" = "8:"
"Transitive" = "11:FALSE"
"Vital" = "11:TRUE"
"ReadOnly" = "11:FALSE"
"Hidden" = "11:FALSE"
"System" = "11:FALSE"
"Permanent" = "11:FALSE"
"SharedLegacy" = "11:FALSE"
"PackageAs" = "3:1"
"Register" = "3:1"
"Exclude" = "11:FALSE"
"IsDependency" = "11:TRUE"
"IsolateTo" = "8:"
}
"{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_CAE156FDC58747C99CAC2B74B508AF1B"
{
"SourcePath" = "8:..\\Discord Custom Status\\img\\dslogo.ico"
"TargetName" = "8:dslogo.ico"
"Tag" = "8:"
"Folder" = "8:_61666FF4F2D943F7B612A6534CD8C02E"
"Condition" = "8:"
"Transitive" = "11:FALSE"
"Vital" = "11:TRUE"
"ReadOnly" = "11:FALSE"
"Hidden" = "11:FALSE"
"System" = "11:FALSE"
"Permanent" = "11:FALSE"
"SharedLegacy" = "11:FALSE"
"PackageAs" = "3:1"
"Register" = "3:1"
"Exclude" = "11:FALSE"
"IsDependency" = "11:FALSE"
"IsolateTo" = "8:"
}
"{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F45C1C25169CB17B03217A064DCD993D"
{
"AssemblyRegister" = "3:1"
"AssemblyIsInGAC" = "11:FALSE"
"AssemblyAsmDisplayName" = "8:System.Net.Http, Version=4.2.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
"ScatterAssemblies"
{
"_F45C1C25169CB17B03217A064DCD993D"
{
"Name" = "8:System.Net.Http.dll"
"Attributes" = "3:512"
}
}
"SourcePath" = "8:System.Net.Http.dll"
"TargetName" = "8:"
"Tag" = "8:"
"Folder" = "8:_61666FF4F2D943F7B612A6534CD8C02E"
"Condition" = "8:"
"Transitive" = "11:FALSE"
"Vital" = "11:TRUE"
"ReadOnly" = "11:FALSE"
"Hidden" = "11:FALSE"
"System" = "11:FALSE"
"Permanent" = "11:FALSE"
"SharedLegacy" = "11:FALSE"
"PackageAs" = "3:1"
"Register" = "3:1"
"Exclude" = "11:FALSE"
"IsDependency" = "11:TRUE"
"IsolateTo" = "8:"
}
}
"FileType"
{
}
"Folder"
{
"{3C67513D-01DD-4637-8A68-80971EB9504F}:_61666FF4F2D943F7B612A6534CD8C02E"
{
"DefaultLocation" = "8:[ProgramFilesFolder][Manufacturer]\\[ProductName]"
"Name" = "8:#1925"
"AlwaysCreate" = "11:FALSE"
"Condition" = "8:"
"Transitive" = "11:FALSE"
"Property" = "8:TARGETDIR"
"Folders"
{
}
}
"{1525181F-901A-416C-8A58-119130FE478E}:_83F597640DED42B9A216090D9E9889B6"
{
"Name" = "8:#1919"
"AlwaysCreate" = "11:FALSE"
"Condition" = "8:"
"Transitive" = "11:FALSE"
"Property" = "8:ProgramMenuFolder"
"Folders"
{
}
}
"{1525181F-901A-416C-8A58-119130FE478E}:_AC27C2E9ABF748F99242A7A9F79AABB0"
{
"Name" = "8:#1916"
"AlwaysCreate" = "11:FALSE"
"Condition" = "8:"
"Transitive" = "11:FALSE"
"Property" = "8:DesktopFolder"
"Folders"
{
}
}
}
"LaunchCondition"
{
}
"Locator"
{
}
"MsiBootstrapper"
{
"LangId" = "3:1033"
"RequiresElevation" = "11:FALSE"
}
"Product"
{
"Name" = "8:Microsoft Visual Studio"
"ProductName" = "8:Custom Discord Status"
"ProductCode" = "8:{14EF19A4-10E2-41A7-957F-8103E7AE0A0F}"
"PackageCode" = "8:{FD4F366D-5448-4C15-ACB4-24E54E7CAECD}"
"UpgradeCode" = "8:{4FB99BE1-7F2B-4C95-A3F7-8EC9CD3D750E}"
"AspNetVersion" = "8:4.0.30319.0"
"RestartWWWService" = "11:FALSE"
"RemovePreviousVersions" = "11:FALSE"
"DetectNewerInstalledVersion" = "11:TRUE"
"InstallAllUsers" = "11:FALSE"
"ProductVersion" = "8:5.0.5"
"Manufacturer" = "8:Rafaello Inc."
"ARPHELPTELEPHONE" = "8:"
"ARPHELPLINK" = "8:"
"Title" = "8:Setup CDS"
"Subject" = "8:"
"ARPCONTACT" = "8:Rafaello"
"Keywords" = "8:"
"ARPCOMMENTS" = "8:"
"ARPURLINFOABOUT" = "8:"
"ARPPRODUCTICON" = "8:"
"ARPIconIndex" = "3:0"
"SearchPath" = "8:"
"UseSystemSearchPath" = "11:TRUE"
"TargetPlatform" = "3:0"
"PreBuildEvent" = "8:"
"PostBuildEvent" = "8:"
"RunPostBuildEvent" = "3:0"
}
"Registry"
{
"HKLM"
{
"Keys"
{
"{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_9634F4021C104FBCB487BA195BF227E9"
{
"Name" = "8:Software"
"Condition" = "8:"
"AlwaysCreate" = "11:FALSE"
"DeleteAtUninstall" = "11:FALSE"
"Transitive" = "11:FALSE"
"Keys"
{
"{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_0B15268162C446E79B6292D549B55C99"
{
"Name" = "8:[Manufacturer]"
"Condition" = "8:"
"AlwaysCreate" = "11:FALSE"
"DeleteAtUninstall" = "11:FALSE"
"Transitive" = "11:FALSE"
"Keys"
{
}
"Values"
{
}
}
}
"Values"
{
}
}
}
}
"HKCU"
{
"Keys"
{
"{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_257FD72AC8A1485D9AD8AD1A94C28E0B"
{
"Name" = "8:Software"
"Condition" = "8:"
"AlwaysCreate" = "11:FALSE"
"DeleteAtUninstall" = "11:FALSE"
"Transitive" = "11:FALSE"
"Keys"
{
"{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_9B9CB874C31B4DD09273144144CD18DE"
{
"Name" = "8:[Manufacturer]"
"Condition" = "8:"
"AlwaysCreate" = "11:FALSE"
"DeleteAtUninstall" = "11:FALSE"
"Transitive" = "11:FALSE"
"Keys"
{
}
"Values"
{
}
}
}
"Values"
{
}
}
}
}
"HKCR"
{
"Keys"
{
}
}
"HKU"
{
"Keys"
{
}
}
"HKPU"
{
"Keys"
{
}
}
}
"Sequences"
{
}
"Shortcut"
{
"{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_4C605521032C411FB1ACB89FC85077EE"
{
"Name" = "8:Custom Discord Status"
"Arguments" = "8:"
"Description" = "8:"
"ShowCmd" = "3:1"
"IconIndex" = "3:0"
"Transitive" = "11:FALSE"
"Target" = "8:_ADC92BEB793C49CE98493488B9A08087"
"Folder" = "8:_AC27C2E9ABF748F99242A7A9F79AABB0"
"WorkingFolder" = "8:_61666FF4F2D943F7B612A6534CD8C02E"
"Icon" = "8:_CAE156FDC58747C99CAC2B74B508AF1B"
"Feature" = "8:"
}
}
"UserInterface"
{
"{DF760B10-853B-4699-99F2-AFF7185B4A62}:_30575E4F4F9D42FD92240356FA3D6572"
{
"Name" = "8:#1901"
"Sequence" = "3:2"
"Attributes" = "3:2"
"Dialogs"
{
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_7A53BA3DD6FD4CF2BD4B645792982247"
{
"Sequence" = "3:100"
"DisplayName" = "8:Progress"
"UseDynamicProperties" = "11:TRUE"
"IsDependency" = "11:FALSE"
"SourcePath" = "8:<VsdDialogDir>\\VsdAdminProgressDlg.wid"
"Properties"
{
"BannerBitmap"
{
"Name" = "8:BannerBitmap"
"DisplayName" = "8:#1001"
"Description" = "8:#1101"
"Type" = "3:8"
"ContextData" = "8:Bitmap"
"Attributes" = "3:4"
"Setting" = "3:1"
"UsePlugInResources" = "11:TRUE"
}
"ShowProgress"
{
"Name" = "8:ShowProgress"
"DisplayName" = "8:#1009"
"Description" = "8:#1109"
"Type" = "3:5"
"ContextData" = "8:1;True=1;False=0"
"Attributes" = "3:0"
"Setting" = "3:0"
"Value" = "3:1"
"DefaultValue" = "3:1"
"UsePlugInResources" = "11:TRUE"
}
}
}
}
}
"{DF760B10-853B-4699-99F2-AFF7185B4A62}:_3BCF4DF8434F486F8AE7203C019187E9"
{
"Name" = "8:#1902"
"Sequence" = "3:1"
"Attributes" = "3:3"
"Dialogs"
{
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_3935095436D94B40ACEBB1912A89F8D9"
{
"Sequence" = "3:100"
"DisplayName" = "8:Finished"
"UseDynamicProperties" = "11:TRUE"
"IsDependency" = "11:FALSE"
"SourcePath" = "8:<VsdDialogDir>\\VsdFinishedDlg.wid"
"Properties"
{
"BannerBitmap"
{
"Name" = "8:BannerBitmap"
"DisplayName" = "8:#1001"
"Description" = "8:#1101"
"Type" = "3:8"
"ContextData" = "8:Bitmap"
"Attributes" = "3:4"
"Setting" = "3:1"
"UsePlugInResources" = "11:TRUE"
}
"UpdateText"
{
"Name" = "8:UpdateText"
"DisplayName" = "8:#1058"
"Description" = "8:#1158"
"Type" = "3:15"
"ContextData" = "8:"
"Attributes" = "3:0"
"Setting" = "3:1"
"Value" = "8:#1258"
"DefaultValue" = "8:#1258"
"UsePlugInResources" = "11:TRUE"
}
}
}
}
}
"{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_751E1291FC744E61BF4D9A093320C82D"
{
"UseDynamicProperties" = "11:FALSE"
"IsDependency" = "11:FALSE"
"SourcePath" = "8:<VsdDialogDir>\\VsdUserInterface.wim"
}
"{DF760B10-853B-4699-99F2-AFF7185B4A62}:_8C5C418C655C48F8AA316B71767BA6D7"
{
"Name" = "8:#1902"
"Sequence" = "3:2"
"Attributes" = "3:3"
"Dialogs"
{
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_3BD0D0D6491C433FBCA7F4F9347D9692"
{
"Sequence" = "3:100"
"DisplayName" = "8:Finished"
"UseDynamicProperties" = "11:TRUE"
"IsDependency" = "11:FALSE"
"SourcePath" = "8:<VsdDialogDir>\\VsdAdminFinishedDlg.wid"
"Properties"
{
"BannerBitmap"
{
"Name" = "8:BannerBitmap"
"DisplayName" = "8:#1001"
"Description" = "8:#1101"
"Type" = "3:8"
"ContextData" = "8:Bitmap"
"Attributes" = "3:4"
"Setting" = "3:1"
"UsePlugInResources" = "11:TRUE"
}
}
}
}
}
"{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_AD912C7023174DD68FFE9F8D4DFC37DF"
{
"UseDynamicProperties" = "11:FALSE"
"IsDependency" = "11:FALSE"
"SourcePath" = "8:<VsdDialogDir>\\VsdBasicDialogs.wim"
}
"{DF760B10-853B-4699-99F2-AFF7185B4A62}:_AF906EEFF3C248B29DBB777E7E685023"
{
"Name" = "8:#1900"
"Sequence" = "3:2"
"Attributes" = "3:1"
"Dialogs"
{
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_36D3603FEFD04254B49257EA78A8FC58"
{
"Sequence" = "3:200"
"DisplayName" = "8:Installation Folder"
"UseDynamicProperties" = "11:TRUE"
"IsDependency" = "11:FALSE"
"SourcePath" = "8:<VsdDialogDir>\\VsdAdminFolderDlg.wid"
"Properties"
{
"BannerBitmap"
{
"Name" = "8:BannerBitmap"
"DisplayName" = "8:#1001"
"Description" = "8:#1101"
"Type" = "3:8"
"ContextData" = "8:Bitmap"
"Attributes" = "3:4"
"Setting" = "3:1"
"UsePlugInResources" = "11:TRUE"
}
}
}
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_D540B6CC03154B7E9A74D6B85BDDB5C0"
{
"Sequence" = "3:100"
"DisplayName" = "8:Welcome"
"UseDynamicProperties" = "11:TRUE"
"IsDependency" = "11:FALSE"
"SourcePath" = "8:<VsdDialogDir>\\VsdAdminWelcomeDlg.wid"
"Properties"
{
"BannerBitmap"
{
"Name" = "8:BannerBitmap"
"DisplayName" = "8:#1001"
"Description" = "8:#1101"
"Type" = "3:8"
"ContextData" = "8:Bitmap"
"Attributes" = "3:4"
"Setting" = "3:1"
"UsePlugInResources" = "11:TRUE"
}
"CopyrightWarning"
{
"Name" = "8:CopyrightWarning"
"DisplayName" = "8:#1002"
"Description" = "8:#1102"
"Type" = "3:3"
"ContextData" = "8:"
"Attributes" = "3:0"
"Setting" = "3:1"
"Value" = "8:#1202"
"DefaultValue" = "8:#1202"
"UsePlugInResources" = "11:TRUE"
}
"Welcome"
{
"Name" = "8:Welcome"
"DisplayName" = "8:#1003"
"Description" = "8:#1103"
"Type" = "3:3"
"ContextData" = "8:"
"Attributes" = "3:0"
"Setting" = "3:1"
"Value" = "8:#1203"
"DefaultValue" = "8:#1203"
"UsePlugInResources" = "11:TRUE"
}
}
}
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_E89D74CFB21B4B328FA02C9AD72FA9D3"
{
"Sequence" = "3:300"
"DisplayName" = "8:Confirm Installation"
"UseDynamicProperties" = "11:TRUE"
"IsDependency" = "11:FALSE"
"SourcePath" = "8:<VsdDialogDir>\\VsdAdminConfirmDlg.wid"
"Properties"
{
"BannerBitmap"
{
"Name" = "8:BannerBitmap"
"DisplayName" = "8:#1001"
"Description" = "8:#1101"
"Type" = "3:8"
"ContextData" = "8:Bitmap"
"Attributes" = "3:4"
"Setting" = "3:1"
"UsePlugInResources" = "11:TRUE"
}
}
}
}
}
"{DF760B10-853B-4699-99F2-AFF7185B4A62}:_BE1BD0F90E96424BBF9C7FA888B429DE"
{
"Name" = "8:#1901"
"Sequence" = "3:1"
"Attributes" = "3:2"
"Dialogs"
{
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_66D5F2769EA24F7AA71D252BD0590D83"
{
"Sequence" = "3:100"
"DisplayName" = "8:Progress"
"UseDynamicProperties" = "11:TRUE"
"IsDependency" = "11:FALSE"
"SourcePath" = "8:<VsdDialogDir>\\VsdProgressDlg.wid"
"Properties"
{
"BannerBitmap"
{
"Name" = "8:BannerBitmap"
"DisplayName" = "8:#1001"
"Description" = "8:#1101"
"Type" = "3:8"
"ContextData" = "8:Bitmap"
"Attributes" = "3:4"
"Setting" = "3:1"
"UsePlugInResources" = "11:TRUE"
}
"ShowProgress"
{
"Name" = "8:ShowProgress"
"DisplayName" = "8:#1009"
"Description" = "8:#1109"
"Type" = "3:5"
"ContextData" = "8:1;True=1;False=0"
"Attributes" = "3:0"
"Setting" = "3:0"
"Value" = "3:1"
"DefaultValue" = "3:1"
"UsePlugInResources" = "11:TRUE"
}
}
}
}
}
"{DF760B10-853B-4699-99F2-AFF7185B4A62}:_FDD6640B3B504A85ACDA19A4BE20526E"
{
"Name" = "8:#1900"
"Sequence" = "3:1"
"Attributes" = "3:1"
"Dialogs"
{
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_3661461F23D1400E850D5FD4C60F9B2A"
{
"Sequence" = "3:100"
"DisplayName" = "8:Welcome"
"UseDynamicProperties" = "11:TRUE"
"IsDependency" = "11:FALSE"
"SourcePath" = "8:<VsdDialogDir>\\VsdWelcomeDlg.wid"
"Properties"
{
"BannerBitmap"
{
"Name" = "8:BannerBitmap"
"DisplayName" = "8:#1001"
"Description" = "8:#1101"
"Type" = "3:8"
"ContextData" = "8:Bitmap"
"Attributes" = "3:4"
"Setting" = "3:1"
"UsePlugInResources" = "11:TRUE"
}
"CopyrightWarning"
{
"Name" = "8:CopyrightWarning"
"DisplayName" = "8:#1002"
"Description" = "8:#1102"
"Type" = "3:3"
"ContextData" = "8:"
"Attributes" = "3:0"
"Setting" = "3:1"
"Value" = "8:#1202"
"DefaultValue" = "8:#1202"
"UsePlugInResources" = "11:TRUE"
}
"Welcome"
{
"Name" = "8:Welcome"
"DisplayName" = "8:#1003"
"Description" = "8:#1103"
"Type" = "3:3"
"ContextData" = "8:"
"Attributes" = "3:0"
"Setting" = "3:1"
"Value" = "8:#1203"
"DefaultValue" = "8:#1203"
"UsePlugInResources" = "11:TRUE"
}
}
}
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_606B221C51C34F40A87246F89C68C27A"
{
"Sequence" = "3:200"
"DisplayName" = "8:Installation Folder"
"UseDynamicProperties" = "11:TRUE"
"IsDependency" = "11:FALSE"
"SourcePath" = "8:<VsdDialogDir>\\VsdFolderDlg.wid"
"Properties"
{
"BannerBitmap"
{
"Name" = "8:BannerBitmap"
"DisplayName" = "8:#1001"
"Description" = "8:#1101"
"Type" = "3:8"
"ContextData" = "8:Bitmap"
"Attributes" = "3:4"
"Setting" = "3:1"
"UsePlugInResources" = "11:TRUE"
}
"InstallAllUsersVisible"
{
"Name" = "8:InstallAllUsersVisible"
"DisplayName" = "8:#1059"
"Description" = "8:#1159"
"Type" = "3:5"
"ContextData" = "8:1;True=1;False=0"
"Attributes" = "3:0"
"Setting" = "3:0"
"Value" = "3:1"
"DefaultValue" = "3:1"
"UsePlugInResources" = "11:TRUE"
}
}
}
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_D643F3F01CF842638E50D028E5F4656D"
{
"Sequence" = "3:300"
"DisplayName" = "8:Confirm Installation"
"UseDynamicProperties" = "11:TRUE"
"IsDependency" = "11:FALSE"
"SourcePath" = "8:<VsdDialogDir>\\VsdConfirmDlg.wid"
"Properties"
{
"BannerBitmap"
{
"Name" = "8:BannerBitmap"
"DisplayName" = "8:#1001"
"Description" = "8:#1101"
"Type" = "3:8"
"ContextData" = "8:Bitmap"
"Attributes" = "3:4"
"Setting" = "3:1"
"UsePlugInResources" = "11:TRUE"
}
}
}
}
}
}
"MergeModule"
{
}
"ProjectOutput"
{
"{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_ADC92BEB793C49CE98493488B9A08087"
{
"SourcePath" = "8:..\\Discord Custom Status\\obj\\Debug\\Discord Custom Status.exe"
"TargetName" = "8:"
"Tag" = "8:"
"Folder" = "8:_61666FF4F2D943F7B612A6534CD8C02E"
"Condition" = "8:"
"Transitive" = "11:FALSE"
"Vital" = "11:TRUE"
"ReadOnly" = "11:FALSE"
"Hidden" = "11:FALSE"
"System" = "11:FALSE"
"Permanent" = "11:FALSE"
"SharedLegacy" = "11:FALSE"
"PackageAs" = "3:1"
"Register" = "3:1"
"Exclude" = "11:FALSE"
"IsDependency" = "11:FALSE"
"IsolateTo" = "8:"
"ProjectOutputGroupRegister" = "3:1"
"OutputConfiguration" = "8:"
"OutputGroupCanonicalName" = "8:Built"
"OutputProjectGuid" = "8:{B07BB826-E59D-4B9C-9234-9465893293A6}"
"ShowKeyOutput" = "11:TRUE"
"ExcludeFilters"
{
}
}
}
}
}