Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
obj/
36 changes: 12 additions & 24 deletions ColtPlugin/ColtPlugin.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<FileUpgradeFlags>
</FileUpgradeFlags>
<OldToolsVersion>3.5</OldToolsVersion>
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<UpgradeBackupLocation>
</UpgradeBackupLocation>
<TargetFrameworkProfile />
Expand Down Expand Up @@ -54,7 +54,7 @@
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<PlatformTarget>x86</PlatformTarget>
<OutputPath>..\..\FD4\FlashDevelop\Bin\Debug\Plugins\</OutputPath>
<OutputPath>..\..\..\..\FlashDevelop\Bin\Debug\Plugins\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
</PropertyGroup>
Expand All @@ -77,9 +77,6 @@
<HintPath>jayrock\Jayrock.Json.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Deployment" />
<Reference Include="System.DirectoryServices" />
<Reference Include="System.Drawing" />
<Reference Include="System.Web.Services" />
<Reference Include="System.Windows.Forms" />
Expand All @@ -101,20 +98,11 @@
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="PluginMain.cs" />
<Compile Include="Resources\LocaleHelper.cs" />
<Compile Include="Rpc\JsonRpcClient.cs" />
<Compile Include="Rpc\JsonRpcClient.cs">
<SubType>Component</SubType>
</Compile>
<Compile Include="Settings.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\FD4\External\Plugins\ProjectManager\ProjectManager.csproj">
<Project>{78101C01-E186-4954-B1DD-DEBB7905FAD8}</Project>
<Name>ProjectManager</Name>
</ProjectReference>
<ProjectReference Include="..\..\FD4\PluginCore\PluginCore.csproj">
<Project>{61885F70-B4DC-4B44-852D-5D6D03F2A734}</Project>
<Name>PluginCore</Name>
<Private>False</Private>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Forms\FirstTimeDialog.resx">
<DependentUpon>FirstTimeDialog.cs</DependentUpon>
Expand Down Expand Up @@ -153,18 +141,18 @@
<EmbeddedResource Include="Resources\colt.png" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\FD4\External\Plugins\ASCompletion\ASCompletion.csproj">
<ProjectReference Include="..\..\..\..\PluginCore\PluginCore.csproj">
<Project>{61885f70-b4dc-4b44-852d-5d6d03f2a734}</Project>
<Name>PluginCore</Name>
</ProjectReference>
<ProjectReference Include="..\..\ASCompletion\ASCompletion.csproj">
<Project>{4EBF2653-9654-4E40-880E-0046B3D6210E}</Project>
<Name>ASCompletion</Name>
</ProjectReference>
<ProjectReference Include="..\ProjectManager\ProjectManager.csproj">
<Project>{78101C01-E186-4954-B1DD-DEBB7905FAD8}</Project>
<ProjectReference Include="..\..\ProjectManager\ProjectManager.csproj">
<Project>{78101c01-e186-4954-b1dd-debb7905fad8}</Project>
<Name>ProjectManager</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\PluginCore\PluginCore.csproj">
<Project>{61885F70-B4DC-4B44-852D-5D6D03F2A734}</Project>
<Name>PluginCore</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\colt_run.png" />
Expand Down
13 changes: 4 additions & 9 deletions ColtPlugin/Forms/FirstTimeDialog.cs
Original file line number Diff line number Diff line change
@@ -1,25 +1,20 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace ColtPlugin.Forms
{
public partial class FirstTimeDialog : Form
{
public Boolean AutoRun = true;
public Boolean InterceptBuilds = false;
public String ShortCode = null;
public bool AutoRun = true;
public bool InterceptBuilds;
public string ShortCode;

public FirstTimeDialog()
{
InitializeComponent();
}

public FirstTimeDialog(Boolean interceptBuilds, Boolean autorun)
public FirstTimeDialog(bool interceptBuilds, bool autorun)
{
InitializeComponent();
InterceptBuilds = checkBox1.Checked = interceptBuilds;
Expand Down
Loading