Skip to content

Commit b47ca46

Browse files
committed
proj fix
1 parent 50ea202 commit b47ca46

File tree

5 files changed

+11
-20
lines changed

5 files changed

+11
-20
lines changed

TorrentSort.sln

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 15
44
VisualStudioVersion = 15.0.27004.2006
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TorrentSort", "TorrentSort\TorrentSort.csproj", "{645E4976-D2AF-44EC-99CC-3C344C5BEC24}"
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TorrentSort", "TorrentSort\TorrentSort.csproj", "{42D3ACD9-4F04-4711-B844-C82322D5C408}"
77
EndProject
88
Global
99
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1010
Debug|Any CPU = Debug|Any CPU
1111
Release|Any CPU = Release|Any CPU
1212
EndGlobalSection
1313
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14-
{645E4976-D2AF-44EC-99CC-3C344C5BEC24}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15-
{645E4976-D2AF-44EC-99CC-3C344C5BEC24}.Debug|Any CPU.Build.0 = Debug|Any CPU
16-
{645E4976-D2AF-44EC-99CC-3C344C5BEC24}.Release|Any CPU.ActiveCfg = Release|Any CPU
17-
{645E4976-D2AF-44EC-99CC-3C344C5BEC24}.Release|Any CPU.Build.0 = Release|Any CPU
14+
{42D3ACD9-4F04-4711-B844-C82322D5C408}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{42D3ACD9-4F04-4711-B844-C82322D5C408}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{42D3ACD9-4F04-4711-B844-C82322D5C408}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{42D3ACD9-4F04-4711-B844-C82322D5C408}.Release|Any CPU.Build.0 = Release|Any CPU
1818
EndGlobalSection
1919
GlobalSection(SolutionProperties) = preSolution
2020
HideSolutionNode = FALSE

TorrentSort/App.config

Lines changed: 0 additions & 6 deletions
This file was deleted.

TorrentSort/Program.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using Newtonsoft.Json;
2-
using System;
32
using System.IO;
43
using System.Reflection;
54
using System.Text.RegularExpressions;

TorrentSort/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
[assembly: ComVisible(false)]
2121

2222
// The following GUID is for the ID of the typelib if this project is exposed to COM
23-
[assembly: Guid("645e4976-d2af-44ec-99cc-3c344c5bec24")]
23+
[assembly: Guid("42d3acd9-4f04-4711-b844-c82322d5c408")]
2424

2525
// Version information for an assembly consists of the following four values:
2626
//

TorrentSort/TorrentSort.csproj

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<PropertyGroup>
55
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
66
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7-
<ProjectGuid>{645E4976-D2AF-44EC-99CC-3C344C5BEC24}</ProjectGuid>
7+
<ProjectGuid>{42D3ACD9-4F04-4711-B844-C82322D5C408}</ProjectGuid>
88
<OutputType>WinExe</OutputType>
99
<RootNamespace>TorrentSort</RootNamespace>
1010
<AssemblyName>TorrentSort</AssemblyName>
@@ -37,9 +37,6 @@
3737
<PropertyGroup>
3838
<ApplicationIcon>icon.ico</ApplicationIcon>
3939
</PropertyGroup>
40-
<PropertyGroup>
41-
<StartupObject />
42-
</PropertyGroup>
4340
<ItemGroup>
4441
<Reference Include="Newtonsoft.Json, Version=11.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
4542
<HintPath>..\packages\Newtonsoft.Json.11.0.2\lib\net40\Newtonsoft.Json.dll</HintPath>
@@ -50,15 +47,16 @@
5047
<Reference Include="System.Data.DataSetExtensions" />
5148
<Reference Include="Microsoft.CSharp" />
5249
<Reference Include="System.Data" />
50+
<Reference Include="System.Deployment" />
51+
<Reference Include="System.Drawing" />
52+
<Reference Include="System.Net.Http" />
53+
<Reference Include="System.Windows.Forms" />
5354
<Reference Include="System.Xml" />
5455
</ItemGroup>
5556
<ItemGroup>
5657
<Compile Include="Config.cs" />
5758
<Compile Include="Program.cs" />
5859
<Compile Include="Properties\AssemblyInfo.cs" />
59-
</ItemGroup>
60-
<ItemGroup>
61-
<None Include="App.config" />
6260
<None Include="config.json">
6361
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
6462
</None>

0 commit comments

Comments
 (0)