+463
-17
lines changedFilter options
+463
-17
lines changed Original file line number Diff line number Diff line change
@@ -26,6 +26,3 @@
26
26
path = external/AjaxMin
27
27
url = https://github.com/danelkhen/AjaxMin.git
28
28
ignore = dirty
29
-
[submodule "external/octokit.net"]
30
-
path = external/octokit.net
31
-
url = https://github.com/octokit/octokit.net.git
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1
+
config.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
1
-
<?xml version="1.0" encoding="utf-8" ?>
1
+
<?xml version="1.0" encoding="utf-8"?>
2
2
<configuration>
3
3
<startup>
4
-
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
4
+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.1"/>
5
5
</startup>
6
-
</configuration>
6
+
</configuration>
Original file line number Diff line number Diff line change
@@ -80,10 +80,7 @@ void CreateExe()
80
80
Console.WriteLine("creating executable");
81
81
//System.Diagnostics.Process.Start(Path.Combine(InstallerProjectDir, "make"), "release");
82
82
83
-
if (Utils.IsUnix)
84
-
System.Diagnostics.Process.Start(new System.Diagnostics.ProcessStartInfo("make", "release") { WorkingDirectory = InstallerProjectDir, UseShellExecute = true }).WaitForExit();
85
-
else
86
-
System.Diagnostics.Process.Start(new System.Diagnostics.ProcessStartInfo("cmd", "/c make release") { WorkingDirectory = InstallerProjectDir, UseShellExecute = true }).WaitForExit();
83
+
Utils.CallMake(InstallerProjectDir);
87
84
88
85
//var runner = new MSBuildRunner(InstallerProjectDir);
89
86
//runner.Execute();
Original file line number Diff line number Diff line change
@@ -43,6 +43,14 @@ struct ObjectProperty<T>
43
43
static class Utils
44
44
{
45
45
46
+
public static void CallMake(string dir)
47
+
{
48
+
if (Utils.IsUnix)
49
+
System.Diagnostics.Process.Start(new System.Diagnostics.ProcessStartInfo("make", "release") { WorkingDirectory = dir, UseShellExecute = true }).WaitForExit();
50
+
else
51
+
System.Diagnostics.Process.Start(new System.Diagnostics.ProcessStartInfo("cmd", "/c make release") { WorkingDirectory = dir, UseShellExecute = true }).WaitForExit();
52
+
}
53
+
46
54
public static string CorrectPathSeparator(string path)
47
55
{
48
56
if (IsUnix)
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
1
1
<?xml version="1.0" encoding="utf-8"?>
2
-
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2
+
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3
3
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4
4
<PropertyGroup>
5
5
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@@ -9,8 +9,9 @@
9
9
<AppDesignerFolder>Properties</AppDesignerFolder>
10
10
<RootNamespace>Packager</RootNamespace>
11
11
<AssemblyName>Packager</AssemblyName>
12
-
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
12
+
<TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
13
13
<FileAlignment>512</FileAlignment>
14
+
<TargetFrameworkProfile />
14
15
</PropertyGroup>
15
16
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16
17
<PlatformTarget>AnyCPU</PlatformTarget>
@@ -46,6 +47,9 @@
46
47
<Reference Include="ICSharpCode.SharpZipLib">
47
48
<HintPath>..\..\external\SharpZipLib\bin\ICSharpCode.SharpZipLib.dll</HintPath>
48
49
</Reference>
50
+
<Reference Include="Octokit">
51
+
<HintPath>..\..\external\octokit.net\Octokit\bin\Debug\Mono\Octokit.dll</HintPath>
52
+
</Reference>
49
53
<Reference Include="System" />
50
54
<Reference Include="System.Core" />
51
55
<Reference Include="System.Web" />
@@ -101,4 +105,4 @@
101
105
<Target Name="AfterBuild">
102
106
</Target>
103
107
-->
104
-
</Project>
108
+
</Project>
You can’t perform that action at this time.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4