Skip to content

Commit 6949db4

Browse files
Removed License requirements, Upgraded to VS16
1 parent 1497bfe commit 6949db4

File tree

10 files changed

+8
-321
lines changed

10 files changed

+8
-321
lines changed

code/TheGreatFollowUpper.LicenseGenerator/App.config

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

code/TheGreatFollowUpper.LicenseGenerator/Program.cs

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

code/TheGreatFollowUpper.LicenseGenerator/Properties/AssemblyInfo.cs

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

code/TheGreatFollowUpper.LicenseGenerator/TheGreatFollowUpper.LicenseGenerator.csproj

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

code/TheGreatFollowUpper.sln

Lines changed: 4 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 15
4-
VisualStudioVersion = 15.0.26403.7
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.30711.63
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TheGreatFollowUpper", "TheGreatFollowUpper\TheGreatFollowUpper.csproj", "{4741128C-EAE5-4E75-9751-5CD6222F6021}"
77
EndProject
8-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TheGreatFollowUpper.LicenseGenerator", "TheGreatFollowUpper.LicenseGenerator\TheGreatFollowUpper.LicenseGenerator.csproj", "{2E16C98B-530D-46F7-8F80-DF73B7E44CC8}"
9-
EndProject
108
Global
119
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1210
Debug|Any CPU = Debug|Any CPU
@@ -17,24 +15,11 @@ Global
1715
{4741128C-EAE5-4E75-9751-5CD6222F6021}.Debug|Any CPU.Build.0 = Debug|Any CPU
1816
{4741128C-EAE5-4E75-9751-5CD6222F6021}.Release|Any CPU.ActiveCfg = Release|Any CPU
1917
{4741128C-EAE5-4E75-9751-5CD6222F6021}.Release|Any CPU.Build.0 = Release|Any CPU
20-
{2E16C98B-530D-46F7-8F80-DF73B7E44CC8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
21-
{2E16C98B-530D-46F7-8F80-DF73B7E44CC8}.Debug|Any CPU.Build.0 = Debug|Any CPU
22-
{2E16C98B-530D-46F7-8F80-DF73B7E44CC8}.Release|Any CPU.ActiveCfg = Release|Any CPU
23-
{2E16C98B-530D-46F7-8F80-DF73B7E44CC8}.Release|Any CPU.Build.0 = Release|Any CPU
2418
EndGlobalSection
2519
GlobalSection(SolutionProperties) = preSolution
2620
HideSolutionNode = FALSE
2721
EndGlobalSection
28-
GlobalSection(TeamFoundationVersionControl) = preSolution
29-
SccNumberOfProjects = 3
30-
SccEnterpriseProvider = {4CA58AB2-18FA-4F8D-95D4-32DDF27D184C}
31-
SccTeamFoundationServer = https://verbodrome.visualstudio.com/
32-
SccLocalPath0 = .
33-
SccProjectUniqueName1 = TheGreatFollowUpper\\TheGreatFollowUpper.csproj
34-
SccProjectName1 = TheGreatFollowUpper
35-
SccLocalPath1 = TheGreatFollowUpper
36-
SccProjectUniqueName2 = TheGreatFollowUpper.LicenseGenerator\\TheGreatFollowUpper.LicenseGenerator.csproj
37-
SccProjectName2 = TheGreatFollowUpper.LicenseGenerator
38-
SccLocalPath2 = TheGreatFollowUpper.LicenseGenerator
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {51AA292F-AF3A-4DDE-9A9A-00AEB34FCF8B}
3924
EndGlobalSection
4025
EndGlobal

code/TheGreatFollowUpper/GreatFollowUpperAddin.cs

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -41,17 +41,6 @@ private void ThisAddIn_Startup(object sender, System.EventArgs e)
4141
System.Windows.Forms.Application.ThreadException += Application_ThreadException;
4242
AppDomain.CurrentDomain.UnhandledException += CurrentDomain_UnhandledException;
4343

44-
try
45-
{
46-
if (!License.IsLicenseValid())
47-
return;
48-
}
49-
catch (Exception exception)
50-
{
51-
HandleError(exception);
52-
}
53-
54-
5544
_inbox = InboxFolder.Items;
5645
_inbox.ItemAdd += Categorize;
5746
_inbox.ItemAdd += Inbox_ItemAdd;

code/TheGreatFollowUpper/License.cs

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

code/TheGreatFollowUpper/Ribbon.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,6 @@ private static string GetResourceText(string resourceName)
6464

6565
public void TaskContext_Click(dynamic sender)
6666
{
67-
if (!License.IsLicenseValid())
68-
return;
69-
7067
var explorer = Globals.GreatFollowUpperAddin.Application.ActiveExplorer();
7168
if (explorer?.Selection == null)
7269
return;

code/TheGreatFollowUpper/TheGreatFollowUpper.csproj

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,6 @@
198198
<Compile Include="Extensions\FollowUpItem.cs" />
199199
<Compile Include="Util\Utils.cs" />
200200
<Compile Include="Util\InputBox.cs" />
201-
<Compile Include="License.cs" />
202201
<Compile Include="Util\Linqqer.cs" />
203202
<Compile Include="Extensions\MailItemExtensions.cs" />
204203
<Compile Include="Views\FollowUpForm.cs">
@@ -257,7 +256,6 @@
257256
<DependentUpon>GreatFollowUpperAddin.Designer.xml</DependentUpon>
258257
</Compile>
259258
<AppDesigner Include="Properties\" />
260-
<None Include="README.MD" />
261259
<None Include="TheGreatFollowUpper_TemporaryKey.pfx" />
262260
</ItemGroup>
263261
<ItemGroup>
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<packages>
3+
<package id="Newtonsoft.Json" version="12.0.3" targetFramework="net461" />
4+
</packages>

0 commit comments

Comments
 (0)