Skip to content

Commit

Permalink
Fall back framework, and added PHP library.
Browse files Browse the repository at this point in the history
  • Loading branch information
krisdb2009 committed Sep 3, 2019
1 parent cc655e9 commit 9c9e284
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 9 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -256,4 +256,5 @@ paket-files/

# Python Tools for Visual Studio (PTVS)
__pycache__/
*.pyc
*.pyc
/SuperADD/bin/Release64
7 changes: 5 additions & 2 deletions SuperADD.sln
Original file line number Diff line number Diff line change
@@ -1,20 +1,23 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.28010.2041
# Visual Studio Version 16
VisualStudioVersion = 16.0.29215.179
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SuperADD", "SuperADD\SuperADD.csproj", "{E022A43E-0E85-4D09-B380-E94EA312FD86}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
Release64|Any CPU = Release64|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{E022A43E-0E85-4D09-B380-E94EA312FD86}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E022A43E-0E85-4D09-B380-E94EA312FD86}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E022A43E-0E85-4D09-B380-E94EA312FD86}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E022A43E-0E85-4D09-B380-E94EA312FD86}.Release|Any CPU.Build.0 = Release|Any CPU
{E022A43E-0E85-4D09-B380-E94EA312FD86}.Release64|Any CPU.ActiveCfg = Release64|Any CPU
{E022A43E-0E85-4D09-B380-E94EA312FD86}.Release64|Any CPU.Build.0 = Release64|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
2 changes: 1 addition & 1 deletion SuperADD/Properties/Settings.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified SuperADD/Resources/SuperADDDaemon.zip
Binary file not shown.
18 changes: 14 additions & 4 deletions SuperADD/SuperADD.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<OutputType>WinExe</OutputType>
<RootNamespace>SuperADD</RootNamespace>
<AssemblyName>SuperADD</AssemblyName>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>true</Deterministic>
Expand All @@ -29,8 +29,8 @@
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>x64</PlatformTarget>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x86</PlatformTarget>
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>
Expand All @@ -49,6 +49,14 @@
<PropertyGroup>
<ApplicationManifest>app.manifest</ApplicationManifest>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release64|AnyCPU'">
<OutputPath>bin\Release64\</OutputPath>
<Optimize>true</Optimize>
<DebugType>none</DebugType>
<PlatformTarget>x64</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<Reference Include="Costura, Version=4.1.0.0, Culture=neutral, PublicKeyToken=9919ef960d84173d, processorArchitecture=MSIL">
<HintPath>..\packages\Costura.Fody.4.1.0\lib\net40\Costura.dll</HintPath>
Expand Down Expand Up @@ -84,7 +92,9 @@
<Reference Include="System.Data" />
<Reference Include="System.Drawing" />
<Reference Include="System.IO.Compression.FileSystem" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Net.Http">
<Private>False</Private>
</Reference>
<Reference Include="System.Xml.Linq" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Windows.Forms" />
Expand Down
Binary file added SuperADD/SuperADDDaemon/vcruntime140.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion SuperADD/app.config
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2"/></startup></configuration>
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1"/></startup></configuration>

0 comments on commit 9c9e284

Please sign in to comment.