Skip to content

Commit

Permalink
Version 2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeromix9 committed Sep 25, 2019
1 parent 19512dd commit c8026bb
Show file tree
Hide file tree
Showing 14 changed files with 305 additions and 165 deletions.
280 changes: 161 additions & 119 deletions Server Creation Tool/MainForm.Designer.cs

Large diffs are not rendered by default.

104 changes: 102 additions & 2 deletions Server Creation Tool/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1031,7 +1031,7 @@ private void finishInstallationCSSOURCE()
public void finishInstallationCSGO()
{
string serverFolderpath = steamCmdSpeicherort.Substring(steamCmdSpeicherort.IndexOf(":") - 1, steamCmdSpeicherort.LastIndexOf("\\")) + "\\" + serverFolderName;
//Check Langouage
//Check Language

string[] askUserToCreateConfigAndBatchFileMsgBox = null;
string[] failedToCreateServerStartupFilesMsgBox = null;
Expand Down Expand Up @@ -1305,7 +1305,7 @@ string InternetOrLan(string text, string caption)
private void finishInstallationCodBO3()
{
string serverFolderpath = steamCmdSpeicherort.Substring(steamCmdSpeicherort.IndexOf(":") - 1, steamCmdSpeicherort.LastIndexOf("\\")) + "\\" + serverFolderName;
//Check Langouage
//Check Language
string[] startServerInfo = null;
string[] installationFailedMsgBox = null;
string[] importantNoteMsgBox = null;
Expand Down Expand Up @@ -1335,8 +1335,10 @@ private void finishInstallationCodBO3()
MessageBox.Show(installationFailedMsgBox[0], installationFailedMsgBox[1], MessageBoxButtons.OK, MessageBoxIcon.Error);
}
serverFolderName = null;

}


private void finishInstallationKf2()
{
string serverFolderpath = steamCmdSpeicherort.Substring(steamCmdSpeicherort.IndexOf(":") - 1, steamCmdSpeicherort.LastIndexOf("\\")) + "\\" + serverFolderName;
Expand Down Expand Up @@ -1493,10 +1495,49 @@ private void finishInstallationARK()
MessageBox.Show(installationFailedMsgBox[0], installationFailedMsgBox[1], MessageBoxButtons.OK, MessageBoxIcon.Error);
}
serverFolderName = null;

}

private void finishInstallation7days()
{

string serverFolderpath = steamCmdSpeicherort.Substring(steamCmdSpeicherort.IndexOf(":") - 1, steamCmdSpeicherort.LastIndexOf("\\")) + "\\" + serverFolderName;
//Check Language
string[] startServerInfo = null;
string[] installationFailedMsgBox = null;
string[] importantNoteMsgBox = null;
switch (Properties.Settings.Default.language)
{
//Second value of each variable is the title of the messagebox and the first value is the message
case "english":
startServerInfo = new string[] { "You can start the server from here: " + serverFolderpath + @"\7days\startdedicated.bat", "7 Days to Die Server" };
installationFailedMsgBox = new string[] { "It looks like the installation failed!", "Install 7 Days to Die Server" };
importantNoteMsgBox = new string[] { "IMPORTANT NOTE: You can edit the config file at: " + serverFolderpath + @"\7days\serverconfig.xml" };
break;
case "german":
startServerInfo = new string[] { "Du kannst den Server hier ausführen:" + serverFolderpath + @"\7days\startdedicated.bat", "" };
installationFailedMsgBox = new string[] { "Die Installation ist fehlgeschlagen!", "Installieren 7 Days to Die Server" };
importantNoteMsgBox = new string[] { "Du findest die Config Datei hier: " + serverFolderpath + @"\7days\serverconfig.xml" };
break;
}
//Check if server's exectable exists
if (System.IO.File.Exists(serverFolderpath + @"\7days\startdedicated.bat"))
{
MessageBox.Show(startServerInfo[0], startServerInfo[1], MessageBoxButtons.OK, MessageBoxIcon.Information);
MessageBox.Show(importantNoteMsgBox[0], importantNoteMsgBox[1], MessageBoxButtons.OK, MessageBoxIcon.Information);
Process.Start(serverFolderpath);
}
else
{
MessageBox.Show(installationFailedMsgBox[0], installationFailedMsgBox[1], MessageBoxButtons.OK, MessageBoxIcon.Error);
}
serverFolderName = null;


}
private void finishInstallation()
{
//here is the switch statement. it works like the IF statement
switch (serverFolderName)
{
//COUNTER STRIKE 1.6
Expand All @@ -1515,6 +1556,7 @@ private void finishInstallation()
case "css":
finishInstallationCSSOURCE();
break;
//CS:GO
case "csgo":
finishInstallationCSGO();
break;
Expand All @@ -1536,6 +1578,9 @@ private void finishInstallation()
case "ark":
finishInstallationARK();
break;
case "7days":
finishInstallation7days();
break;
}
}
private void disableControls()
Expand Down Expand Up @@ -1721,5 +1766,60 @@ private void Left4Dead2ToolStripMenuItem2_Click(object sender, EventArgs e)
serverFolderName = "l4d2";
finishInstallationLeft4dead2();
}

private void Left4DeadToolStripMenuItem1_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("https://steamcommunity.com/sharedfiles/filedetails/?id=1872593045");
//Left 4 Dead Guide English
}

private void Left4DeadToolStripMenuItem2_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("https://steamcommunity.com/sharedfiles/filedetails/?id=1795236722");
//Left 4 Dead Guide German
}

private void Button1_Click(object sender, EventArgs e)
{

try
{
if (steamCmdSpeicherort != null)
{
//check if steamCMD exists
if (File.Exists(steamCmdSpeicherort))
{
installSrvProcess = Process.Start(steamCmdSpeicherort, "+login anonymous +force_install_dir ./7days/ +app_update 294420 validate");
SteamCMDtimer.Enabled = true;
SteamCMDtimer.Start();
//in the designer, but i cant view it
serverFolderName = @"7days";
disableControls();

}
else
{

ChangeLocateSteamCMDStatus("SteamCMD could not be found!Please select its location again", "Install 7 Days to Die Server", "SteamCMD konnte nicht gefunden werden. Bitte lokalisieren sie erneut.");
}

}

}
catch (Exception) {; } //7 Days to Die
}

private void DaysToDieToolStripMenuItem_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("https://steamcommunity.com/sharedfiles/filedetails/?id=1728855550");
//7 Days to Die English Guide
}

private void DaysToDieToolStripMenuItem1_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("https://steamcommunity.com/sharedfiles/filedetails/?id=1731898014");
//7 Days to Die German Guide

}
}
}
62 changes: 29 additions & 33 deletions Server Creation Tool/MainForm.resx
Original file line number Diff line number Diff line change
Expand Up @@ -157,50 +157,46 @@
</data>
<data name="englishToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAGYktHRAD/AP8A/6C9p5MAAAJJSURBVEhL7ZTtS1NRHMfvP9WLXoUl00ZGm1PRWKRUkKZhGLEe
qAWtFz1gWLSECLMH10qC2R7UamKsNMo5J2gsTFLvdnd3m25T593dN8/p3u5stfYielF+4QsXzu/3/ZzD
75zLbOo/0XK/G0TzbArHz49im+5Znun61i3URD+r0e714Kl9AsJFC8IVWsjxDMMZ68C3NEGcnaXNvrcR
VB18vqGZqBDg5IVRhHt6we4qR/zqJUiJhApotwYg2Oxgy0vXFy8ju5xCMiWi4/YkthucBQHGI0MYH/CD
b24Et9+I9GSQro+851QAKaww9sP1xA/BfBbhyj1Y8b2ihaGZRTSZfPQ7F6CpceNu9wTinbfAajVI2h4C
kgReWIXlmp/C5fhvAMUtp17jk2sYkdoqxNpakWEXkM3SzA2ABccAwvrddEOSICCTyeJx3wydg5IlxzMM
7ShCuYBiJMczjNL4py3H/wWAfKLfSmksVnK8OmRd/SA83jk6VHHuM/hjRxGpMeCjw0sbcgF3ej4gvSat
3/clerXZnRpwDx7B0j6WP+QSvZNercWlNLKiiER3F9iyHYjdtOJG5zhKKp00NBdAAuoaX9L7TrQ2PYXo
gXpEDx9CwPMO+5qHVMB0KE6LVkfeIFKtR8x0Al5HAPqGwe+7IfoRoNh8ZQzR2Ap9B0m7jZ5GuN6hAjIc
B+G0CRGDDvN9L9Bmzv8fEf0KQFxW68b93hB9DxLPQzh3RgUQ4herFV33giitduU1ExMVAihuaB1GcEqg
NXL8pv5tMcxXlfmQxZGLRW4AAAAASUVORK5CYII=
iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABGdBTUEAALGPC/xhBQAAAklJREFUSEvt
lO1LU1Ecx+8/1YtehSXTRkabU9FYpFSQpmEYsR6oBa0XPWBYtIQIswfXSoLZHtRqYqw0yjknaCxMUu92
d3ebblPn3d03z+ne7my19iJ6UX7hCxfO7/f9nMPvnMts6j/Rcr8bRPNsCsfPj2Kb7lme6frWLdREP6vR
7vXgqX0CwkULwhVayPEMwxnrwLc0QZydpc2+txFUHXy+oZmoEODkhVGEe3rB7ipH/OolSImECmi3BiDY
7GDLS9cXLyO7nEIyJaLj9iS2G5wFAcYjQxgf8INvbgS334j0ZJCuj7znVAAprDD2w/XED8F8FuHKPVjx
vaKFoZlFNJl89DsXoKlx4273BOKdt8BqNUjaHgKSBF5YheWan8Ll+G8AxS2nXuOTaxiR2irE2lqRYReQ
zdLMDYAFxwDC+t10Q5IgIJPJ4nHfDJ2DkiXHMwztKEK5gGIkxzOM0vinLcf/BYB8ot9KaSxWcrw6ZF39
IDzeOTpUce4z+GNHEakx4KPDSxtyAXd6PiC9Jq3f9yV6tdmdGnAPHsHSPpY/5BK9k16txaU0sqKIRHcX
2LIdiN204kbnOEoqnTQ0F0AC6hpf0vtOtDY9heiBekQPH0LA8w77modUwHQoTotWR94gUq1HzHQCXkcA
+obB77sh+hGg2HxlDNHYCn0HSbuNnka43qECMhwH4bQJEYMO830v0GbO/x8R/QpAXFbrxv3eEH0PEs9D
OHdGBRDiF6sVXfeCKK125TUTExUCKG5oHUZwSqA1cvym/m0xzFeV+ZDFkYtFbgAAAABJRU5ErkJggg==
</value>
</data>
<data name="germenToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAGYktHRAD/AP8A/6C9p5MAAABhSURBVEhL7Y0xCoAwEAQXLMynbAStU6dO4y8Cfix52Rlh2ysX
LW5g2hkE/+AstSlkHjhKNYXMx8CXeeDOe1fIPGAbTCHzMfBlfg6upStkfg7GagqZj4Ev8+8gNYXMB58C
PKrLFL5nPYVMAAAAAElFTkSuQmCC
iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABGdBTUEAALGPC/xhBQAAAGFJREFUSEvt
jTEKgDAQBBcszKdsBK1Tp07jLwJ+LHnZGWHbKxctbmDaGQT/4Cy1KWQeOEo1hczHwJd54M57V8g8YBtM
IfMx8GV+Dq6lK2R+DsZqCpmPgS/z7yA1hcwHnwI8qssUvmc9hUwAAAAASUVORK5CYII=
</value>
</data>
<data name="englishToolStripMenuItem1.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAGYktHRAD/AP8A/6C9p5MAAAJJSURBVEhL7ZTtS1NRHMfvP9WLXoUl00ZGm1PRWKRUkKZhGLEe
qAWtFz1gWLSECLMH10qC2R7UamKsNMo5J2gsTFLvdnd3m25T593dN8/p3u5stfYielF+4QsXzu/3/ZzD
75zLbOo/0XK/G0TzbArHz49im+5Znun61i3URD+r0e714Kl9AsJFC8IVWsjxDMMZ68C3NEGcnaXNvrcR
VB18vqGZqBDg5IVRhHt6we4qR/zqJUiJhApotwYg2Oxgy0vXFy8ju5xCMiWi4/YkthucBQHGI0MYH/CD
b24Et9+I9GSQro+851QAKaww9sP1xA/BfBbhyj1Y8b2ihaGZRTSZfPQ7F6CpceNu9wTinbfAajVI2h4C
kgReWIXlmp/C5fhvAMUtp17jk2sYkdoqxNpakWEXkM3SzA2ABccAwvrddEOSICCTyeJx3wydg5IlxzMM
7ShCuYBiJMczjNL4py3H/wWAfKLfSmksVnK8OmRd/SA83jk6VHHuM/hjRxGpMeCjw0sbcgF3ej4gvSat
3/clerXZnRpwDx7B0j6WP+QSvZNercWlNLKiiER3F9iyHYjdtOJG5zhKKp00NBdAAuoaX9L7TrQ2PYXo
gXpEDx9CwPMO+5qHVMB0KE6LVkfeIFKtR8x0Al5HAPqGwe+7IfoRoNh8ZQzR2Ap9B0m7jZ5GuN6hAjIc
B+G0CRGDDvN9L9Bmzv8fEf0KQFxW68b93hB9DxLPQzh3RgUQ4herFV33giitduU1ExMVAihuaB1GcEqg
NXL8pv5tMcxXlfmQxZGLRW4AAAAASUVORK5CYII=
iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABGdBTUEAALGPC/xhBQAAAklJREFUSEvt
lO1LU1Ecx+8/1YtehSXTRkabU9FYpFSQpmEYsR6oBa0XPWBYtIQIswfXSoLZHtRqYqw0yjknaCxMUu92
d3ebblPn3d03z+ne7my19iJ6UX7hCxfO7/f9nMPvnMts6j/Rcr8bRPNsCsfPj2Kb7lme6frWLdREP6vR
7vXgqX0CwkULwhVayPEMwxnrwLc0QZydpc2+txFUHXy+oZmoEODkhVGEe3rB7ipH/OolSImECmi3BiDY
7GDLS9cXLyO7nEIyJaLj9iS2G5wFAcYjQxgf8INvbgS334j0ZJCuj7znVAAprDD2w/XED8F8FuHKPVjx
vaKFoZlFNJl89DsXoKlx4273BOKdt8BqNUjaHgKSBF5YheWan8Ll+G8AxS2nXuOTaxiR2irE2lqRYReQ
zdLMDYAFxwDC+t10Q5IgIJPJ4nHfDJ2DkiXHMwztKEK5gGIkxzOM0vinLcf/BYB8ot9KaSxWcrw6ZF39
IDzeOTpUce4z+GNHEakx4KPDSxtyAXd6PiC9Jq3f9yV6tdmdGnAPHsHSPpY/5BK9k16txaU0sqKIRHcX
2LIdiN204kbnOEoqnTQ0F0AC6hpf0vtOtDY9heiBekQPH0LA8w77modUwHQoTotWR94gUq1HzHQCXkcA
+obB77sh+hGg2HxlDNHYCn0HSbuNnka43qECMhwH4bQJEYMO830v0GbO/x8R/QpAXFbrxv3eEH0PEs9D
OHdGBRDiF6sVXfeCKK125TUTExUCKG5oHUZwSqA1cvym/m0xzFeV+ZDFkYtFbgAAAABJRU5ErkJggg==
</value>
</data>
<data name="germanToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAGYktHRAD/AP8A/6C9p5MAAABhSURBVEhL7Y0xCoAwEAQXLMynbAStU6dO4y8Cfix52Rlh2ysX
LW5g2hkE/+AstSlkHjhKNYXMx8CXeeDOe1fIPGAbTCHzMfBlfg6upStkfg7GagqZj4Ev8+8gNYXMB58C
PKrLFL5nPYVMAAAAAElFTkSuQmCC
iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABGdBTUEAALGPC/xhBQAAAGFJREFUSEvt
jTEKgDAQBBcszKdsBK1Tp07jLwJ+LHnZGWHbKxctbmDaGQT/4Cy1KWQeOEo1hczHwJd54M57V8g8YBtM
IfMx8GV+Dq6lK2R+DsZqCpmPgS/z7yA1hcwHnwI8qssUvmc9hUwAAAAASUVORK5CYII=
</value>
</data>
<data name="fAQToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
Expand Down Expand Up @@ -247,7 +243,7 @@ Note: This Tool will ONLY install the Server, it can´t forward any ports for yo
<value>277, 16</value>
</metadata>
<metadata name="$this.TrayHeight" type="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>52</value>
<value>61</value>
</metadata>
<data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>y7+d9Rm8whrnuhiG59JbZUZC9u6zZtAuuqN35po9+M4=</dsig:DigestValue>
<dsig:DigestValue>Ay8f7Ma4clhCCEkx35NKUxPkDaeVxaIT+kE4xnEyXy4=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
Expand Down
Binary file modified Server Creation Tool/bin/Release/Server Creation Tool.exe
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<description asmv2:iconFile="favicon (8).ico" xmlns="urn:schemas-microsoft-com:asm.v1" />
<application />
<entryPoint>
<assemblyIdentity name="Server Creation Tool" version="2.6.7190.39109" language="neutral" processorArchitecture="msil" />
<assemblyIdentity name="Server Creation Tool" version="2.6.7207.40953" language="neutral" processorArchitecture="msil" />
<commandLine file="Server Creation Tool.exe" parameters="" />
</entryPoint>
<trustInfo>
Expand Down Expand Up @@ -43,14 +43,14 @@
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="Server Creation Tool.exe" size="147968">
<assemblyIdentity name="Server Creation Tool" version="2.6.7190.39109" language="neutral" processorArchitecture="msil" />
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="Server Creation Tool.exe" size="150528">
<assemblyIdentity name="Server Creation Tool" version="2.6.7207.40953" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>XzO2dDEzz0WxXt3SR1DF9KnjX6utzTC8x72zTYaU5HA=</dsig:DigestValue>
<dsig:DigestValue>jaA5B4j2UfKBy3ctXpKYUy8tf0HIbN9jZCr8PKksUds=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
Expand Down
Binary file not shown.
4 changes: 3 additions & 1 deletion Server Creation Tool/changeLogFrm.resx
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,9 @@
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="textBox1.Text" xml:space="preserve">
<value>08.09.2019 - Version 2.7 - Some Visual enhancements also adding the german language and added the creation of the batch and config files.
<value>25.09.2019 - Version 2.8 Added 7 Days to Die Server and Guides, also added Left 4 Dead Guides

08.09.2019 - Version 2.7 - Some Visual enhancements also adding the german language and added the creation of the batch and config files.

13.05.2019 - Version 2.6 - Added Left4dead, also the interface was updated and an update system was implemented

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>y7+d9Rm8whrnuhiG59JbZUZC9u6zZtAuuqN35po9+M4=</dsig:DigestValue>
<dsig:DigestValue>Ay8f7Ma4clhCCEkx35NKUxPkDaeVxaIT+kE4xnEyXy4=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
Expand Down
Binary file not shown.
Binary file not shown.
Binary file modified Server Creation Tool/obj/Release/Server Creation Tool.exe
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<description asmv2:iconFile="favicon (8).ico" xmlns="urn:schemas-microsoft-com:asm.v1" />
<application />
<entryPoint>
<assemblyIdentity name="Server Creation Tool" version="2.6.7190.39109" language="neutral" processorArchitecture="msil" />
<assemblyIdentity name="Server Creation Tool" version="2.6.7207.40953" language="neutral" processorArchitecture="msil" />
<commandLine file="Server Creation Tool.exe" parameters="" />
</entryPoint>
<trustInfo>
Expand Down Expand Up @@ -43,14 +43,14 @@
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="Server Creation Tool.exe" size="147968">
<assemblyIdentity name="Server Creation Tool" version="2.6.7190.39109" language="neutral" processorArchitecture="msil" />
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="Server Creation Tool.exe" size="150528">
<assemblyIdentity name="Server Creation Tool" version="2.6.7207.40953" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>XzO2dDEzz0WxXt3SR1DF9KnjX6utzTC8x72zTYaU5HA=</dsig:DigestValue>
<dsig:DigestValue>jaA5B4j2UfKBy3ctXpKYUy8tf0HIbN9jZCr8PKksUds=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
Expand Down
Binary file not shown.

0 comments on commit c8026bb

Please sign in to comment.