Old Development Source Code

This commit is contained in:
Michał Czyż
2021-04-11 22:30:08 +02:00
parent 8dcb15e2cc
commit 7aa1aa7c9e
116 changed files with 4876 additions and 4103 deletions

21
Disk Manager/App.config Normal file
View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="Disk_Manager.My.MySettings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
</sectionGroup>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
<userSettings>
<Disk_Manager.My.MySettings>
<setting name="POWER_IP" serializeAs="String">
<value>192.168.0.200</value>
</setting>
<setting name="OS_IP" serializeAs="String">
<value>192.168.0.17</value>
</setting>
</Disk_Manager.My.MySettings>
</userSettings>
</configuration>

View File

@@ -0,0 +1,188 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{80ED9B22-BA88-493A-9DB0-B445D0683FCA}</ProjectGuid>
<OutputType>WinExe</OutputType>
<StartupObject>Disk_Manager.My.MyApplication</StartupObject>
<RootNamespace>Disk_Manager</RootNamespace>
<AssemblyName>Disk Manager</AssemblyName>
<FileAlignment>512</FileAlignment>
<MyType>WindowsForms</MyType>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<IsWebBootstrapper>false</IsWebBootstrapper>
<PublishUrl>publish\</PublishUrl>
<Install>true</Install>
<InstallFrom>Unc</InstallFrom>
<UpdateEnabled>true</UpdateEnabled>
<UpdateMode>Background</UpdateMode>
<UpdateInterval>7</UpdateInterval>
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
<UpdatePeriodically>false</UpdatePeriodically>
<UpdateRequired>true</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions>
<InstallUrl>\\Mike-PC\App\publish\</InstallUrl>
<TargetCulture>en-US</TargetCulture>
<ProductName>Disk Manager</ProductName>
<PublisherName>Michał Czyż</PublisherName>
<MinimumRequiredVersion>0.4.7.0</MinimumRequiredVersion>
<ApplicationRevision>2</ApplicationRevision>
<ApplicationVersion>0.4.8.2</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<CreateDesktopShortcut>true</CreateDesktopShortcut>
<PublishWizardCompleted>true</PublishWizardCompleted>
<BootstrapperEnabled>true</BootstrapperEnabled>
<BootstrapperComponentsUrl>\\Mike-PC\App\publish\DotNetFX452</BootstrapperComponentsUrl>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<DefineDebug>true</DefineDebug>
<DefineTrace>true</DefineTrace>
<OutputPath>bin\Debug\</OutputPath>
<DocumentationFile>Disk Manager.xml</DocumentationFile>
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<DefineDebug>false</DefineDebug>
<DefineTrace>true</DefineTrace>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DocumentationFile>Disk Manager.xml</DocumentationFile>
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
</PropertyGroup>
<PropertyGroup>
<OptionExplicit>On</OptionExplicit>
</PropertyGroup>
<PropertyGroup>
<OptionCompare>Binary</OptionCompare>
</PropertyGroup>
<PropertyGroup>
<OptionStrict>Off</OptionStrict>
</PropertyGroup>
<PropertyGroup>
<OptionInfer>On</OptionInfer>
</PropertyGroup>
<PropertyGroup>
<ManifestCertificateThumbprint>FDC02C53043EF2553FF356911F480EE53DEE65E7</ManifestCertificateThumbprint>
</PropertyGroup>
<PropertyGroup>
<ManifestKeyFile>Disk Manager_TemporaryKey.pfx</ManifestKeyFile>
</PropertyGroup>
<PropertyGroup>
<GenerateManifests>true</GenerateManifests>
</PropertyGroup>
<PropertyGroup>
<SignManifests>true</SignManifests>
</PropertyGroup>
<PropertyGroup>
<ApplicationIcon>if_network-workgroup_118928.ico</ApplicationIcon>
</PropertyGroup>
<PropertyGroup>
<ApplicationManifest>My Project\app.manifest</ApplicationManifest>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Deployment" />
<Reference Include="System.Drawing" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.Net.Http" />
</ItemGroup>
<ItemGroup>
<Import Include="Microsoft.VisualBasic" />
<Import Include="System" />
<Import Include="System.Collections" />
<Import Include="System.Collections.Generic" />
<Import Include="System.Data" />
<Import Include="System.Drawing" />
<Import Include="System.Diagnostics" />
<Import Include="System.Windows.Forms" />
<Import Include="System.Linq" />
<Import Include="System.Xml.Linq" />
<Import Include="System.Threading.Tasks" />
</ItemGroup>
<ItemGroup>
<Compile Include="Main.vb">
<SubType>Form</SubType>
</Compile>
<Compile Include="Main.Designer.vb">
<DependentUpon>Main.vb</DependentUpon>
<SubType>Form</SubType>
</Compile>
<Compile Include="My Project\AssemblyInfo.vb" />
<Compile Include="My Project\Application.Designer.vb">
<AutoGen>True</AutoGen>
<DependentUpon>Application.myapp</DependentUpon>
</Compile>
<Compile Include="My Project\Resources.Designer.vb">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Include="My Project\Settings.Designer.vb">
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Main.resx">
<DependentUpon>Main.vb</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="My Project\Resources.resx">
<Generator>VbMyResourcesResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.vb</LastGenOutput>
<CustomToolNamespace>My.Resources</CustomToolNamespace>
<SubType>Designer</SubType>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<None Include="Disk Manager_TemporaryKey.pfx" />
<None Include="My Project\app.manifest" />
<None Include="My Project\Application.myapp">
<Generator>MyApplicationCodeGenerator</Generator>
<LastGenOutput>Application.Designer.vb</LastGenOutput>
</None>
<None Include="My Project\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<CustomToolNamespace>My</CustomToolNamespace>
<LastGenOutput>Settings.Designer.vb</LastGenOutput>
</None>
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<BootstrapperPackage Include=".NETFramework,Version=v4.5.2">
<Visible>False</Visible>
<ProductName>Microsoft .NET Framework 4.5.2 %28x86 and x64%29</ProductName>
<Install>true</Install>
</BootstrapperPackage>
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
<Visible>False</Visible>
<ProductName>.NET Framework 3.5 SP1</ProductName>
<Install>false</Install>
</BootstrapperPackage>
</ItemGroup>
<ItemGroup>
<Content Include="if_network-workgroup_118928.ico" />
<Content Include="if_network1_216674.ico" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

View File

@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<PublishUrlHistory>publish\</PublishUrlHistory>
<InstallUrlHistory>\\Mike-PC\App\publish\|\\Mike-PC\App\Publish\</InstallUrlHistory>
<SupportUrlHistory />
<UpdateUrlHistory />
<BootstrapperUrlHistory>\\Mike-PC\App\publish\DotNetFX452</BootstrapperUrlHistory>
<ErrorReportUrlHistory />
<FallbackCulture>en-US</FallbackCulture>
<VerifyUploadedFiles>false</VerifyUploadedFiles>
</PropertyGroup>
<PropertyGroup>
<EnableSecurityDebugging>false</EnableSecurityDebugging>
</PropertyGroup>
</Project>

Binary file not shown.

314
Disk Manager/Main.Designer.vb generated Normal file
View File

@@ -0,0 +1,314 @@
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()>
Partial Class Main
Inherits System.Windows.Forms.Form
'Form overrides dispose to clean up the component list.
<System.Diagnostics.DebuggerNonUserCode()>
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
Try
If disposing AndAlso components IsNot Nothing Then
components.Dispose()
End If
Finally
MyBase.Dispose(disposing)
End Try
End Sub
'Required by the Windows Form Designer
Private components As System.ComponentModel.IContainer
'NOTE: The following procedure is required by the Windows Form Designer
'It can be modified using the Windows Form Designer.
'Do not modify it using the code editor.
<System.Diagnostics.DebuggerStepThrough()>
Private Sub InitializeComponent()
Me.components = New System.ComponentModel.Container()
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(Main))
Me.STATUS_POWER = New System.Windows.Forms.Label()
Me.STATUS_SERVER = New System.Windows.Forms.Label()
Me.STATUS1 = New System.Windows.Forms.Label()
Me.STATUS2 = New System.Windows.Forms.Label()
Me.GROUPBOX = New System.Windows.Forms.GroupBox()
Me.AVABILITY = New System.Windows.Forms.Button()
Me.POWER_ON_BUTTON = New System.Windows.Forms.Button()
Me.POWER_OFF_BUTTON = New System.Windows.Forms.Button()
Me.Timer = New System.Windows.Forms.Timer(Me.components)
Me.SettingWindow = New System.Windows.Forms.Button()
Me.STATUS3 = New System.Windows.Forms.Label()
Me.STATUS4 = New System.Windows.Forms.Label()
Me.ping2 = New System.Windows.Forms.Button()
Me.ping1 = New System.Windows.Forms.Button()
Me.Mod2 = New System.Windows.Forms.CheckBox()
Me.Mod1 = New System.Windows.Forms.CheckBox()
Me.OS_IP = New System.Windows.Forms.TextBox()
Me.POWER_IP = New System.Windows.Forms.TextBox()
Me.Label2 = New System.Windows.Forms.Label()
Me.Label1 = New System.Windows.Forms.Label()
Me.Save = New System.Windows.Forms.Button()
Me.GroupBox1 = New System.Windows.Forms.GroupBox()
Me.GROUPBOX.SuspendLayout()
Me.GroupBox1.SuspendLayout()
Me.SuspendLayout()
'
'STATUS_POWER
'
Me.STATUS_POWER.AutoSize = True
Me.STATUS_POWER.Location = New System.Drawing.Point(6, 22)
Me.STATUS_POWER.Name = "STATUS_POWER"
Me.STATUS_POWER.Size = New System.Drawing.Size(70, 13)
Me.STATUS_POWER.TabIndex = 0
Me.STATUS_POWER.Text = "Power Status"
'
'STATUS_SERVER
'
Me.STATUS_SERVER.AutoSize = True
Me.STATUS_SERVER.Location = New System.Drawing.Point(6, 48)
Me.STATUS_SERVER.Name = "STATUS_SERVER"
Me.STATUS_SERVER.Size = New System.Drawing.Size(55, 13)
Me.STATUS_SERVER.TabIndex = 1
Me.STATUS_SERVER.Text = "OS Status"
'
'STATUS1
'
Me.STATUS1.AutoSize = True
Me.STATUS1.Location = New System.Drawing.Point(184, 22)
Me.STATUS1.Name = "STATUS1"
Me.STATUS1.Size = New System.Drawing.Size(50, 13)
Me.STATUS1.TabIndex = 2
Me.STATUS1.Text = "STATUS"
'
'STATUS2
'
Me.STATUS2.AutoSize = True
Me.STATUS2.Location = New System.Drawing.Point(184, 48)
Me.STATUS2.Name = "STATUS2"
Me.STATUS2.Size = New System.Drawing.Size(50, 13)
Me.STATUS2.TabIndex = 3
Me.STATUS2.Text = "STATUS"
'
'GROUPBOX
'
Me.GROUPBOX.Controls.Add(Me.STATUS2)
Me.GROUPBOX.Controls.Add(Me.STATUS_POWER)
Me.GROUPBOX.Controls.Add(Me.STATUS1)
Me.GROUPBOX.Controls.Add(Me.STATUS_SERVER)
Me.GROUPBOX.Location = New System.Drawing.Point(12, 99)
Me.GROUPBOX.Name = "GROUPBOX"
Me.GROUPBOX.Size = New System.Drawing.Size(250, 75)
Me.GROUPBOX.TabIndex = 4
Me.GROUPBOX.TabStop = False
Me.GROUPBOX.Text = "Power Managment"
'
'AVABILITY
'
Me.AVABILITY.Location = New System.Drawing.Point(12, 12)
Me.AVABILITY.Name = "AVABILITY"
Me.AVABILITY.Size = New System.Drawing.Size(221, 23)
Me.AVABILITY.TabIndex = 5
Me.AVABILITY.Text = "Refresh"
Me.AVABILITY.UseVisualStyleBackColor = True
'
'POWER_ON_BUTTON
'
Me.POWER_ON_BUTTON.Enabled = False
Me.POWER_ON_BUTTON.Location = New System.Drawing.Point(12, 41)
Me.POWER_ON_BUTTON.Name = "POWER_ON_BUTTON"
Me.POWER_ON_BUTTON.Size = New System.Drawing.Size(250, 23)
Me.POWER_ON_BUTTON.TabIndex = 6
Me.POWER_ON_BUTTON.Text = "Enable Server"
Me.POWER_ON_BUTTON.UseVisualStyleBackColor = True
'
'POWER_OFF_BUTTON
'
Me.POWER_OFF_BUTTON.Enabled = False
Me.POWER_OFF_BUTTON.Location = New System.Drawing.Point(12, 70)
Me.POWER_OFF_BUTTON.Name = "POWER_OFF_BUTTON"
Me.POWER_OFF_BUTTON.Size = New System.Drawing.Size(250, 23)
Me.POWER_OFF_BUTTON.TabIndex = 7
Me.POWER_OFF_BUTTON.Text = "Disable Server"
Me.POWER_OFF_BUTTON.UseVisualStyleBackColor = True
'
'Timer
'
Me.Timer.Enabled = True
Me.Timer.Interval = 3000
'
'SettingWindow
'
Me.SettingWindow.Location = New System.Drawing.Point(239, 12)
Me.SettingWindow.Name = "SettingWindow"
Me.SettingWindow.Size = New System.Drawing.Size(23, 23)
Me.SettingWindow.TabIndex = 8
Me.SettingWindow.Text = ">"
Me.SettingWindow.UseVisualStyleBackColor = True
'
'STATUS3
'
Me.STATUS3.AutoSize = True
Me.STATUS3.Location = New System.Drawing.Point(161, 41)
Me.STATUS3.Name = "STATUS3"
Me.STATUS3.Size = New System.Drawing.Size(50, 13)
Me.STATUS3.TabIndex = 23
Me.STATUS3.Text = "STATUS"
'
'STATUS4
'
Me.STATUS4.AutoSize = True
Me.STATUS4.Location = New System.Drawing.Point(161, 92)
Me.STATUS4.Name = "STATUS4"
Me.STATUS4.Size = New System.Drawing.Size(50, 13)
Me.STATUS4.TabIndex = 22
Me.STATUS4.Text = "STATUS"
'
'ping2
'
Me.ping2.Enabled = False
Me.ping2.Location = New System.Drawing.Point(80, 87)
Me.ping2.Name = "ping2"
Me.ping2.Size = New System.Drawing.Size(75, 23)
Me.ping2.TabIndex = 21
Me.ping2.Text = "Ping"
Me.ping2.UseVisualStyleBackColor = True
'
'ping1
'
Me.ping1.Enabled = False
Me.ping1.Location = New System.Drawing.Point(80, 36)
Me.ping1.Name = "ping1"
Me.ping1.Size = New System.Drawing.Size(75, 23)
Me.ping1.TabIndex = 20
Me.ping1.Text = "Ping"
Me.ping1.UseVisualStyleBackColor = True
'
'Mod2
'
Me.Mod2.AutoSize = True
Me.Mod2.Location = New System.Drawing.Point(186, 67)
Me.Mod2.Name = "Mod2"
Me.Mod2.Size = New System.Drawing.Size(57, 17)
Me.Mod2.TabIndex = 19
Me.Mod2.Text = "Modify"
Me.Mod2.UseVisualStyleBackColor = True
'
'Mod1
'
Me.Mod1.AutoSize = True
Me.Mod1.Location = New System.Drawing.Point(186, 16)
Me.Mod1.Name = "Mod1"
Me.Mod1.Size = New System.Drawing.Size(57, 17)
Me.Mod1.TabIndex = 18
Me.Mod1.Text = "Modify"
Me.Mod1.UseVisualStyleBackColor = True
'
'OS_IP
'
Me.OS_IP.Enabled = False
Me.OS_IP.Location = New System.Drawing.Point(80, 65)
Me.OS_IP.Name = "OS_IP"
Me.OS_IP.Size = New System.Drawing.Size(100, 20)
Me.OS_IP.TabIndex = 17
Me.OS_IP.Text = "0.0.0.0"
'
'POWER_IP
'
Me.POWER_IP.Enabled = False
Me.POWER_IP.Location = New System.Drawing.Point(80, 14)
Me.POWER_IP.Name = "POWER_IP"
Me.POWER_IP.Size = New System.Drawing.Size(100, 20)
Me.POWER_IP.TabIndex = 16
Me.POWER_IP.Text = "0.0.0.0"
'
'Label2
'
Me.Label2.AutoSize = True
Me.Label2.Location = New System.Drawing.Point(9, 74)
Me.Label2.Name = "Label2"
Me.Label2.Size = New System.Drawing.Size(35, 13)
Me.Label2.TabIndex = 15
Me.Label2.Text = "OS IP"
'
'Label1
'
Me.Label1.AutoSize = True
Me.Label1.Location = New System.Drawing.Point(9, 23)
Me.Label1.Name = "Label1"
Me.Label1.Size = New System.Drawing.Size(51, 13)
Me.Label1.TabIndex = 14
Me.Label1.Text = "Server IP"
'
'Save
'
Me.Save.Location = New System.Drawing.Point(12, 130)
Me.Save.Name = "Save"
Me.Save.Size = New System.Drawing.Size(234, 24)
Me.Save.TabIndex = 24
Me.Save.Text = "Save"
Me.Save.UseVisualStyleBackColor = True
'
'GroupBox1
'
Me.GroupBox1.Controls.Add(Me.Save)
Me.GroupBox1.Controls.Add(Me.Label1)
Me.GroupBox1.Controls.Add(Me.STATUS3)
Me.GroupBox1.Controls.Add(Me.Label2)
Me.GroupBox1.Controls.Add(Me.STATUS4)
Me.GroupBox1.Controls.Add(Me.POWER_IP)
Me.GroupBox1.Controls.Add(Me.ping2)
Me.GroupBox1.Controls.Add(Me.OS_IP)
Me.GroupBox1.Controls.Add(Me.ping1)
Me.GroupBox1.Controls.Add(Me.Mod1)
Me.GroupBox1.Controls.Add(Me.Mod2)
Me.GroupBox1.Location = New System.Drawing.Point(270, 12)
Me.GroupBox1.Name = "GroupBox1"
Me.GroupBox1.Size = New System.Drawing.Size(252, 162)
Me.GroupBox1.TabIndex = 25
Me.GroupBox1.TabStop = False
Me.GroupBox1.Text = "Settings"
'
'Main
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(534, 183)
Me.Controls.Add(Me.GroupBox1)
Me.Controls.Add(Me.SettingWindow)
Me.Controls.Add(Me.POWER_OFF_BUTTON)
Me.Controls.Add(Me.POWER_ON_BUTTON)
Me.Controls.Add(Me.AVABILITY)
Me.Controls.Add(Me.GROUPBOX)
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle
Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
Me.MaximizeBox = False
Me.Name = "Main"
Me.Text = "Disk Manager"
Me.GROUPBOX.ResumeLayout(False)
Me.GROUPBOX.PerformLayout()
Me.GroupBox1.ResumeLayout(False)
Me.GroupBox1.PerformLayout()
Me.ResumeLayout(False)
End Sub
Friend WithEvents STATUS_POWER As Label
Friend WithEvents STATUS_SERVER As Label
Friend WithEvents STATUS1 As Label
Friend WithEvents STATUS2 As Label
Friend WithEvents GROUPBOX As GroupBox
Friend WithEvents AVABILITY As Button
Friend WithEvents POWER_ON_BUTTON As Button
Friend WithEvents POWER_OFF_BUTTON As Button
Friend WithEvents Timer As Timer
Friend WithEvents SettingWindow As Button
Friend WithEvents STATUS3 As Label
Friend WithEvents STATUS4 As Label
Friend WithEvents ping2 As Button
Friend WithEvents ping1 As Button
Friend WithEvents Mod2 As CheckBox
Friend WithEvents Mod1 As CheckBox
Friend WithEvents OS_IP As TextBox
Friend WithEvents POWER_IP As TextBox
Friend WithEvents Label2 As Label
Friend WithEvents Label1 As Label
Friend WithEvents Save As Button
Friend WithEvents GroupBox1 As GroupBox
End Class

2014
Disk Manager/Main.resx Normal file

File diff suppressed because it is too large Load Diff

188
Disk Manager/Main.vb Normal file
View File

@@ -0,0 +1,188 @@
Imports System.Net.NetworkInformation
Imports VB = Microsoft.VisualBasic
Public Class Main
Private Sub wait(ByVal seconds As Integer)
For i As Integer = 0 To seconds * 100
System.Threading.Thread.Sleep(10)
Application.DoEvents()
Next
End Sub
Private Sub AVABILITY_Click(sender As Object, e As EventArgs) Handles AVABILITY.Click
sender.Enabled = False
STATUS1.Text = "Refreshing..."
STATUS2.Text = "Refreshing..."
STATUS1.ForeColor = Color.Black
STATUS2.ForeColor = Color.Black
wait(1)
If My.Computer.Network.Ping(POWER_IP.Text) Then
STATUS1.Text = "ONLINE"
STATUS1.ForeColor = Color.Green
Else
STATUS1.Text = "OFFLINE"
STATUS1.ForeColor = Color.Red
End If
If My.Computer.Network.Ping(OS_IP.Text) Then
STATUS2.Text = "ONLINE"
STATUS2.ForeColor = Color.Green
Else
STATUS2.Text = "OFFLINE"
STATUS2.ForeColor = Color.Red
End If
If STATUS1.ForeColor = Color.Red And STATUS2.ForeColor = Color.Red Then
POWER_OFF_BUTTON.Enabled = False
POWER_ON_BUTTON.Enabled = False
ElseIf STATUS1.ForeColor = Color.Green And STATUS2.ForeColor = Color.Red
POWER_OFF_BUTTON.Enabled = False
POWER_ON_BUTTON.Enabled = True
ElseIf STATUS1.ForeColor = Color.Green And STATUS2.ForeColor = Color.Green
POWER_OFF_BUTTON.Enabled = True
POWER_ON_BUTTON.Enabled = False
End If
sender.Enabled = True
End Sub
Private Sub Main_Load(sender As Object, e As EventArgs) Handles MyBase.Load
Me.Size = New Size(289, 222)
POWER_IP.Text = My.Settings.POWER_IP
OS_IP.Text = My.Settings.OS_IP
If My.Computer.Network.Ping(POWER_IP.Text) Then
STATUS1.Text = "ONLINE"
STATUS1.ForeColor = Color.Green
Else
STATUS1.Text = "OFFLINE"
STATUS1.ForeColor = Color.Red
End If
If My.Computer.Network.Ping(OS_IP.Text) Then
STATUS2.Text = "ONLINE"
STATUS2.ForeColor = Color.Green
Else
STATUS2.Text = "OFFLINE"
STATUS2.ForeColor = Color.Red
End If
If STATUS1.ForeColor = Color.Red And STATUS2.ForeColor = Color.Red Then
POWER_OFF_BUTTON.Enabled = False
POWER_ON_BUTTON.Enabled = False
ElseIf STATUS1.ForeColor = Color.Green And STATUS2.ForeColor = Color.Red
POWER_OFF_BUTTON.Enabled = False
POWER_ON_BUTTON.Enabled = True
ElseIf STATUS1.ForeColor = Color.Green And STATUS2.ForeColor = Color.Green
POWER_OFF_BUTTON.Enabled = True
POWER_ON_BUTTON.Enabled = False
End If
End Sub
Private Sub SettingWindow_Click(sender As Object, e As EventArgs) Handles SettingWindow.Click
If SettingWindow.Text = ">" Then
Me.Size = New Size(550, 222)
sender.text = "<"
ElseIf SettingWindow.Text = "<"
Me.Size = New Size(289, 222)
sender.text = ">"
End If
End Sub
Private Sub Save_Click(sender As Object, e As EventArgs) Handles Save.Click
My.Settings.POWER_IP = POWER_IP.Text
My.Settings.OS_IP = OS_IP.Text
My.Settings.Save()
sender.text = "Save Successful! Refreshing IPs.."
sender.Enabled = False
AVABILITY.Enabled = False
STATUS1.Text = "Refreshing..."
STATUS2.Text = "Refreshing..."
STATUS1.ForeColor = Color.Black
STATUS2.ForeColor = Color.Black
wait(1)
If My.Computer.Network.Ping(POWER_IP.Text) Then
STATUS1.Text = "ONLINE"
STATUS1.ForeColor = Color.Green
Else
STATUS1.Text = "OFFLINE"
STATUS1.ForeColor = Color.Red
End If
If My.Computer.Network.Ping(OS_IP.Text) Then
STATUS2.Text = "ONLINE"
STATUS2.ForeColor = Color.Green
Else
STATUS2.Text = "OFFLINE"
STATUS2.ForeColor = Color.Red
End If
If STATUS1.ForeColor = Color.Red And STATUS2.ForeColor = Color.Red Then
POWER_OFF_BUTTON.Enabled = False
POWER_ON_BUTTON.Enabled = False
ElseIf STATUS1.ForeColor = Color.Green And STATUS2.ForeColor = Color.Red
POWER_OFF_BUTTON.Enabled = False
POWER_ON_BUTTON.Enabled = True
ElseIf STATUS1.ForeColor = Color.Green And STATUS2.ForeColor = Color.Green
POWER_OFF_BUTTON.Enabled = True
POWER_ON_BUTTON.Enabled = False
End If
sender.Enabled = True
sender.text = "Save"
AVABILITY.Enabled = True
End Sub
Private Sub Mod1_CheckedChanged(sender As Object, e As EventArgs) Handles Mod1.CheckedChanged
If POWER_IP.Enabled = False Then
POWER_IP.Enabled = True
ping1.Enabled = True
ElseIf POWER_IP.Enabled = True Then
POWER_IP.Enabled = False
ping1.Enabled = False
End If
End Sub
Private Sub Mod2_CheckedChanged(sender As Object, e As EventArgs) Handles Mod2.CheckedChanged
If OS_IP.Enabled = False Then
OS_IP.Enabled = True
ping2.Enabled = True
ElseIf OS_IP.Enabled = True Then
OS_IP.Enabled = False
ping2.Enabled = False
End If
End Sub
Private Sub ping1_Click(sender As Object, e As EventArgs) Handles ping1.Click
sender.Enabled = False
AVABILITY.Enabled = False
STATUS3.Text = "Refreshing..."
STATUS3.ForeColor = Color.Black
wait(1)
If My.Computer.Network.Ping(POWER_IP.Text) Then
STATUS3.Text = "ONLINE"
STATUS3.ForeColor = Color.Green
Else
STATUS3.Text = "OFFLINE"
STATUS3.ForeColor = Color.Red
End If
sender.Enabled = True
AVABILITY.Enabled = True
End Sub
Private Sub ping2_Click(sender As Object, e As EventArgs) Handles ping2.Click
sender.Enabled = False
AVABILITY.Enabled = False
STATUS4.Text = "Refreshing..."
STATUS4.ForeColor = Color.Black
wait(1)
If My.Computer.Network.Ping(OS_IP.Text) Then
STATUS4.Text = "ONLINE"
STATUS4.ForeColor = Color.Green
Else
STATUS4.Text = "OFFLINE"
STATUS4.ForeColor = Color.Red
End If
AVABILITY.Enabled = True
sender.Enabled = True
End Sub
Private Sub POWER_ON_BUTTON_Click(sender As Object, e As EventArgs) Handles POWER_ON_BUTTON.Click
MsgBox("To be implemented..")
End Sub
Private Sub POWER_OFF_BUTTON_Click(sender As Object, e As EventArgs) Handles POWER_OFF_BUTTON.Click
MsgBox("To be implemented..")
End Sub
End Class

View File

@@ -0,0 +1,38 @@
'------------------------------------------------------------------------------
' <auto-generated>
' This code was generated by a tool.
' Runtime Version:4.0.30319.42000
'
' Changes to this file may cause incorrect behavior and will be lost if
' the code is regenerated.
' </auto-generated>
'------------------------------------------------------------------------------
Option Strict On
Option Explicit On
Namespace My
'NOTE: This file is auto-generated; do not modify it directly. To make changes,
' or if you encounter build errors in this file, go to the Project Designer
' (go to Project Properties or double-click the My Project node in
' Solution Explorer), and make changes on the Application tab.
'
Partial Friend Class MyApplication
<Global.System.Diagnostics.DebuggerStepThroughAttribute()> _
Public Sub New()
MyBase.New(Global.Microsoft.VisualBasic.ApplicationServices.AuthenticationMode.Windows)
Me.IsSingleInstance = false
Me.EnableVisualStyles = true
Me.SaveMySettingsOnExit = true
Me.ShutDownStyle = Global.Microsoft.VisualBasic.ApplicationServices.ShutdownMode.AfterMainFormCloses
End Sub
<Global.System.Diagnostics.DebuggerStepThroughAttribute()> _
Protected Overrides Sub OnCreateMainForm()
Me.MainForm = Global.Disk_Manager.Main
End Sub
End Class
End Namespace

View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<MyApplicationData xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<MySubMain>true</MySubMain>
<MainForm>Main</MainForm>
<SingleInstance>false</SingleInstance>
<ShutdownMode>0</ShutdownMode>
<EnableVisualStyles>true</EnableVisualStyles>
<AuthenticationMode>0</AuthenticationMode>
<SaveMySettingsOnExit>true</SaveMySettingsOnExit>
</MyApplicationData>

View File

@@ -0,0 +1,35 @@
Imports System
Imports System.Reflection
Imports System.Runtime.InteropServices
' General Information about an assembly is controlled through the following
' set of attributes. Change these attribute values to modify the information
' associated with an assembly.
' Review the values of the assembly attributes
<Assembly: AssemblyTitle("Disk Manager")>
<Assembly: AssemblyDescription("Power ON & Power OFF your server on a PC.")>
<Assembly: AssemblyCompany("Michał Czyż")>
<Assembly: AssemblyProduct("Disk Manager")>
<Assembly: AssemblyCopyright("Copyright © 2018")>
<Assembly: AssemblyTrademark("")>
<Assembly: ComVisible(False)>
'The following GUID is for the ID of the typelib if this project is exposed to COM
<Assembly: Guid("efc1f196-f1ef-46cb-a811-df564eed4a90")>
' Version information for an assembly consists of the following four values:
'
' Major Version
' Minor Version
' Build Number
' Revision
'
' You can specify all the values or you can default the Build and Revision Numbers
' by using the '*' as shown below:
' <Assembly: AssemblyVersion("1.0.*")>
<Assembly: AssemblyVersion("1.0.0.0")>
<Assembly: AssemblyFileVersion("1.0.0.0")>

View File

@@ -0,0 +1,62 @@
'------------------------------------------------------------------------------
' <auto-generated>
' This code was generated by a tool.
' Runtime Version:4.0.30319.42000
'
' Changes to this file may cause incorrect behavior and will be lost if
' the code is regenerated.
' </auto-generated>
'------------------------------------------------------------------------------
Option Strict On
Option Explicit On
Namespace My.Resources
'This class was auto-generated by the StronglyTypedResourceBuilder
'class via a tool like ResGen or Visual Studio.
'To add or remove a member, edit your .ResX file then rerun ResGen
'with the /str option, or rebuild your VS project.
'''<summary>
''' A strongly-typed resource class, for looking up localized strings, etc.
'''</summary>
<Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0"), _
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
Global.Microsoft.VisualBasic.HideModuleNameAttribute()> _
Friend Module Resources
Private resourceMan As Global.System.Resources.ResourceManager
Private resourceCulture As Global.System.Globalization.CultureInfo
'''<summary>
''' Returns the cached ResourceManager instance used by this class.
'''</summary>
<Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
Friend ReadOnly Property ResourceManager() As Global.System.Resources.ResourceManager
Get
If Object.ReferenceEquals(resourceMan, Nothing) Then
Dim temp As Global.System.Resources.ResourceManager = New Global.System.Resources.ResourceManager("Disk_Manager.Resources", GetType(Resources).Assembly)
resourceMan = temp
End If
Return resourceMan
End Get
End Property
'''<summary>
''' Overrides the current thread's CurrentUICulture property for all
''' resource lookups using this strongly typed resource class.
'''</summary>
<Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
Friend Property Culture() As Global.System.Globalization.CultureInfo
Get
Return resourceCulture
End Get
Set(ByVal value As Global.System.Globalization.CultureInfo)
resourceCulture = value
End Set
End Property
End Module
End Namespace

View File

@@ -0,0 +1,117 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
</root>

View File

@@ -0,0 +1,97 @@
'------------------------------------------------------------------------------
' <auto-generated>
' This code was generated by a tool.
' Runtime Version:4.0.30319.42000
'
' Changes to this file may cause incorrect behavior and will be lost if
' the code is regenerated.
' </auto-generated>
'------------------------------------------------------------------------------
Option Strict On
Option Explicit On
Namespace My
<Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "14.0.0.0"), _
Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
Partial Friend NotInheritable Class MySettings
Inherits Global.System.Configuration.ApplicationSettingsBase
Private Shared defaultInstance As MySettings = CType(Global.System.Configuration.ApplicationSettingsBase.Synchronized(New MySettings()),MySettings)
#Region "My.Settings Auto-Save Functionality"
#If _MyType = "WindowsForms" Then
Private Shared addedHandler As Boolean
Private Shared addedHandlerLockObject As New Object
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
Private Shared Sub AutoSaveSettings(ByVal sender As Global.System.Object, ByVal e As Global.System.EventArgs)
If My.Application.SaveMySettingsOnExit Then
My.Settings.Save()
End If
End Sub
#End If
#End Region
Public Shared ReadOnly Property [Default]() As MySettings
Get
#If _MyType = "WindowsForms" Then
If Not addedHandler Then
SyncLock addedHandlerLockObject
If Not addedHandler Then
AddHandler My.Application.Shutdown, AddressOf AutoSaveSettings
addedHandler = True
End If
End SyncLock
End If
#End If
Return defaultInstance
End Get
End Property
<Global.System.Configuration.UserScopedSettingAttribute(), _
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.Configuration.DefaultSettingValueAttribute("192.168.0.200")> _
Public Property POWER_IP() As String
Get
Return CType(Me("POWER_IP"),String)
End Get
Set
Me("POWER_IP") = value
End Set
End Property
<Global.System.Configuration.UserScopedSettingAttribute(), _
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.Configuration.DefaultSettingValueAttribute("192.168.0.17")> _
Public Property OS_IP() As String
Get
Return CType(Me("OS_IP"),String)
End Get
Set
Me("OS_IP") = value
End Set
End Property
End Class
End Namespace
Namespace My
<Global.Microsoft.VisualBasic.HideModuleNameAttribute(), _
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute()> _
Friend Module MySettingsProperty
<Global.System.ComponentModel.Design.HelpKeywordAttribute("My.Settings")> _
Friend ReadOnly Property Settings() As Global.Disk_Manager.My.MySettings
Get
Return Global.Disk_Manager.My.MySettings.Default
End Get
End Property
End Module
End Namespace

View File

@@ -0,0 +1,12 @@
<?xml version='1.0' encoding='utf-8'?>
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)" GeneratedClassNamespace="My" GeneratedClassName="MySettings" UseMySettingsClassName="true">
<Profiles />
<Settings>
<Setting Name="POWER_IP" Type="System.String" Scope="User">
<Value Profile="(Default)">192.168.0.200</Value>
</Setting>
<Setting Name="OS_IP" Type="System.String" Scope="User">
<Value Profile="(Default)">192.168.0.17</Value>
</Setting>
</Settings>
</SettingsFile>

View File

@@ -0,0 +1,76 @@
<?xml version="1.0" encoding="utf-8"?>
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
<assemblyIdentity version="1.0.0.0" name="MyApplication.app"/>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
<security>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<!-- UAC Manifest Options
If you want to change the Windows User Account Control level replace the
requestedExecutionLevel node with one of the following.
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
<requestedExecutionLevel level="highestAvailable" uiAccess="false" />
Specifying requestedExecutionLevel element will disable file and registry virtualization.
Remove this element if your application requires this virtualization for backwards
compatibility.
-->
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
</requestedPrivileges>
</security>
</trustInfo>
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
<application>
<!-- A list of the Windows versions that this application has been tested on and is
is designed to work with. Uncomment the appropriate elements and Windows will
automatically selected the most compatible environment. -->
<!-- Windows Vista -->
<!--<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}" />-->
<!-- Windows 7 -->
<!--<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}" />-->
<!-- Windows 8 -->
<!--<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}" />-->
<!-- Windows 8.1 -->
<!--<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}" />-->
<!-- Windows 10 -->
<!--<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}" />-->
</application>
</compatibility>
<!-- Indicates that the application is DPI-aware and will not be automatically scaled by Windows at higher
DPIs. Windows Presentation Foundation (WPF) applications are automatically DPI-aware and do not need
to opt in. Windows Forms applications targeting .NET Framework 4.6 that opt into this setting, should
also set the 'EnableWindowsFormsHighDpiAutoResizing' setting to 'true' in their app.config. -->
<!--
<application xmlns="urn:schemas-microsoft-com:asm.v3">
<windowsSettings>
<dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true</dpiAware>
</windowsSettings>
</application>
-->
<!-- Enable themes for Windows common controls and dialogs (Windows XP and later) -->
<!--
<dependency>
<dependentAssembly>
<assemblyIdentity
type="win32"
name="Microsoft.Windows.Common-Controls"
version="6.0.0.0"
processorArchitecture="*"
publicKeyToken="6595b64144ccf1df"
language="*"
/>
</dependentAssembly>
</dependency>
-->
</assembly>

View File

@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<assemblyIdentity name="Disk Manager.application" version="0.4.8.2" publicKeyToken="0000000000000000" language="en-US" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" />
<description asmv2:publisher="Michał Czyż" asmv2:product="Disk Manager" xmlns="urn:schemas-microsoft-com:asm.v1" />
<deployment install="true" mapFileExtensions="true" minimumRequiredVersion="0.4.7.0" co.v1:createDesktopShortcut="true">
<subscription>
<update>
<expiration maximumAge="0" unit="days" />
</update>
</subscription>
<deploymentProvider codebase="file://mike-pc/App/publish/Disk%20Manager.application" />
</deployment>
<compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2">
<framework targetVersion="4.5.2" profile="Full" supportedRuntime="4.0.30319" />
</compatibleFrameworks>
<dependency>
<dependentAssembly dependencyType="install" codebase="Disk Manager.exe.manifest" size="5369">
<assemblyIdentity name="Disk Manager.exe" version="0.4.8.2" publicKeyToken="0000000000000000" language="en-US" processorArchitecture="msil" type="win32" />
<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>Z6sIYkTStdWU3JIGt39IAh3jWQXJVLnVcsOfcgJY9JI=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
</asmv1:assembly>

Binary file not shown.

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="Disk_Manager.My.MySettings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
</sectionGroup>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
<userSettings>
<Disk_Manager.My.MySettings>
<setting name="POWER_IP" serializeAs="String">
<value>192.168.0.200</value>
</setting>
<setting name="OS_IP" serializeAs="String">
<value>192.168.0.17</value>
</setting>
</Disk_Manager.My.MySettings>
</userSettings>
</configuration>

View File

@@ -0,0 +1,101 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<asmv1:assemblyIdentity name="Disk Manager.exe" version="0.4.8.2" publicKeyToken="0000000000000000" language="en-US" processorArchitecture="msil" type="win32" />
<description asmv2:iconFile="if_network-workgroup_118928.ico" xmlns="urn:schemas-microsoft-com:asm.v1" />
<application />
<entryPoint>
<assemblyIdentity name="Disk Manager" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<commandLine file="Disk Manager.exe" parameters="" />
</entryPoint>
<trustInfo>
<security>
<applicationRequestMinimum>
<PermissionSet Unrestricted="true" ID="Custom" SameSite="site" />
<defaultAssemblyRequest permissionSetReference="Custom" />
</applicationRequestMinimum>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<!-- UAC Manifest Options
If you want to change the Windows User Account Control level replace the
requestedExecutionLevel node with one of the following.
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
<requestedExecutionLevel level="highestAvailable" uiAccess="false" />
Specifying requestedExecutionLevel element will disable file and registry virtualization.
Remove this element if your application requires this virtualization for backwards
compatibility.
-->
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
</requestedPrivileges>
</security>
</trustInfo>
<dependency>
<dependentOS>
<osVersionInfo>
<os majorVersion="5" minorVersion="1" buildNumber="2600" servicePackMajor="0" />
</osVersionInfo>
</dependentOS>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="Microsoft.Windows.CommonLanguageRuntime" version="4.0.30319.0" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="Disk Manager.exe" size="253872">
<assemblyIdentity name="Disk Manager" version="1.0.0.0" 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>6HLufkxUWDdm+nzJDQYZA8yUlh1xJhH3e4JTY/EQFQs=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<file name="Disk Manager.exe.config" size="1048">
<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>c/6vlTshT+90JT8TpzR0vyrIsAHlOWYtmmZke0wFGaY=</dsig:DigestValue>
</hash>
</file>
<file name="if_network1_216674.ico" size="106802">
<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>nDs/J1vhb0HJ9OX4T+Y+XS6U02RrO9785rBE/lk+DSk=</dsig:DigestValue>
</hash>
</file>
<file name="if_network-workgroup_118928.ico" size="113146">
<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>V/ZKtqIDEE8t8P4wKM1DPs7JWCtZhKCfHS4Gq1ltZJc=</dsig:DigestValue>
</hash>
</file>
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
<application>
<!-- A list of the Windows versions that this application has been tested on and is
is designed to work with. Uncomment the appropriate elements and Windows will
automatically selected the most compatible environment. -->
<!-- Windows Vista -->
<!--<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}" />-->
<!-- Windows 7 -->
<!--<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}" />-->
<!-- Windows 8 -->
<!--<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}" />-->
<!-- Windows 8.1 -->
<!--<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}" />-->
<!-- Windows 10 -->
<!--<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}" />-->
</application>
</compatibility>
</asmv1:assembly>

Binary file not shown.

View File

@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<assemblyIdentity name="Disk Manager.application" version="0.4.8.2" publicKeyToken="0000000000000000" language="en-US" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" />
<description asmv2:publisher="Michał Czyż" asmv2:product="Disk Manager" xmlns="urn:schemas-microsoft-com:asm.v1" />
<deployment install="true" mapFileExtensions="true" minimumRequiredVersion="0.4.7.0" co.v1:createDesktopShortcut="true">
<subscription>
<update>
<expiration maximumAge="0" unit="days" />
</update>
</subscription>
<deploymentProvider codebase="file://mike-pc/App/publish/Disk%20Manager.application" />
</deployment>
<compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2">
<framework targetVersion="4.5.2" profile="Full" supportedRuntime="4.0.30319" />
</compatibleFrameworks>
<dependency>
<dependentAssembly dependencyType="install" codebase="Disk Manager.exe.manifest" size="5369">
<assemblyIdentity name="Disk Manager.exe" version="0.4.8.2" publicKeyToken="0000000000000000" language="en-US" processorArchitecture="msil" type="win32" />
<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>rs4I3DwKlaeWm7O+Hgwso5pcCIN9EYCaM2VqU1jbr5Q=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
</asmv1:assembly>

Binary file not shown.

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="Disk_Manager.My.MySettings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
</sectionGroup>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
<userSettings>
<Disk_Manager.My.MySettings>
<setting name="POWER_IP" serializeAs="String">
<value>192.168.0.200</value>
</setting>
<setting name="OS_IP" serializeAs="String">
<value>192.168.0.17</value>
</setting>
</Disk_Manager.My.MySettings>
</userSettings>
</configuration>

View File

@@ -0,0 +1,101 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<asmv1:assemblyIdentity name="Disk Manager.exe" version="0.4.8.2" publicKeyToken="0000000000000000" language="en-US" processorArchitecture="msil" type="win32" />
<description asmv2:iconFile="if_network-workgroup_118928.ico" xmlns="urn:schemas-microsoft-com:asm.v1" />
<application />
<entryPoint>
<assemblyIdentity name="Disk Manager" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<commandLine file="Disk Manager.exe" parameters="" />
</entryPoint>
<trustInfo>
<security>
<applicationRequestMinimum>
<PermissionSet Unrestricted="true" ID="Custom" SameSite="site" />
<defaultAssemblyRequest permissionSetReference="Custom" />
</applicationRequestMinimum>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<!-- UAC Manifest Options
If you want to change the Windows User Account Control level replace the
requestedExecutionLevel node with one of the following.
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
<requestedExecutionLevel level="highestAvailable" uiAccess="false" />
Specifying requestedExecutionLevel element will disable file and registry virtualization.
Remove this element if your application requires this virtualization for backwards
compatibility.
-->
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
</requestedPrivileges>
</security>
</trustInfo>
<dependency>
<dependentOS>
<osVersionInfo>
<os majorVersion="5" minorVersion="1" buildNumber="2600" servicePackMajor="0" />
</osVersionInfo>
</dependentOS>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="Microsoft.Windows.CommonLanguageRuntime" version="4.0.30319.0" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="Disk Manager.exe" size="253360">
<assemblyIdentity name="Disk Manager" version="1.0.0.0" 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>JYERJKdpbdiSU9geg6qtxTVpc6bB3WYw+b5tC/aNAOk=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<file name="Disk Manager.exe.config" size="1048">
<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>c/6vlTshT+90JT8TpzR0vyrIsAHlOWYtmmZke0wFGaY=</dsig:DigestValue>
</hash>
</file>
<file name="if_network1_216674.ico" size="106802">
<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>nDs/J1vhb0HJ9OX4T+Y+XS6U02RrO9785rBE/lk+DSk=</dsig:DigestValue>
</hash>
</file>
<file name="if_network-workgroup_118928.ico" size="113146">
<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>V/ZKtqIDEE8t8P4wKM1DPs7JWCtZhKCfHS4Gq1ltZJc=</dsig:DigestValue>
</hash>
</file>
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
<application>
<!-- A list of the Windows versions that this application has been tested on and is
is designed to work with. Uncomment the appropriate elements and Windows will
automatically selected the most compatible environment. -->
<!-- Windows Vista -->
<!--<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}" />-->
<!-- Windows 7 -->
<!--<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}" />-->
<!-- Windows 8 -->
<!--<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}" />-->
<!-- Windows 8.1 -->
<!--<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}" />-->
<!-- Windows 10 -->
<!--<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}" />-->
</application>
</compatibility>
</asmv1:assembly>

View File

@@ -0,0 +1,26 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>
Disk Manager
</name>
</assembly>
<members>
<member name="T:Disk_Manager.My.Resources.Resources">
<summary>
A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member>
<member name="P:Disk_Manager.My.Resources.Resources.ResourceManager">
<summary>
Returns the cached ResourceManager instance used by this class.
</summary>
</member>
<member name="P:Disk_Manager.My.Resources.Resources.Culture">
<summary>
Overrides the current thread's CurrentUICulture property for all
resource lookups using this strongly typed resource class.
</summary>
</member>
</members>
</doc>

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 104 KiB

View File

@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<assemblyIdentity name="Disk Manager.application" version="0.4.8.2" publicKeyToken="0000000000000000" language="en-US" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" />
<description asmv2:publisher="Michał Czyż" asmv2:product="Disk Manager" xmlns="urn:schemas-microsoft-com:asm.v1" />
<deployment install="true" mapFileExtensions="true" minimumRequiredVersion="0.4.7.0" co.v1:createDesktopShortcut="true">
<subscription>
<update>
<expiration maximumAge="0" unit="days" />
</update>
</subscription>
<deploymentProvider codebase="file://mike-pc/App/publish/Disk%20Manager.application" />
</deployment>
<compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2">
<framework targetVersion="4.5.2" profile="Full" supportedRuntime="4.0.30319" />
</compatibleFrameworks>
<dependency>
<dependentAssembly dependencyType="install" codebase="Disk Manager.exe.manifest" size="5369">
<assemblyIdentity name="Disk Manager.exe" version="0.4.8.2" publicKeyToken="0000000000000000" language="en-US" processorArchitecture="msil" type="win32" />
<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>Z6sIYkTStdWU3JIGt39IAh3jWQXJVLnVcsOfcgJY9JI=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
</asmv1:assembly>

Binary file not shown.

View File

@@ -0,0 +1,101 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<asmv1:assemblyIdentity name="Disk Manager.exe" version="0.4.8.2" publicKeyToken="0000000000000000" language="en-US" processorArchitecture="msil" type="win32" />
<description asmv2:iconFile="if_network-workgroup_118928.ico" xmlns="urn:schemas-microsoft-com:asm.v1" />
<application />
<entryPoint>
<assemblyIdentity name="Disk Manager" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<commandLine file="Disk Manager.exe" parameters="" />
</entryPoint>
<trustInfo>
<security>
<applicationRequestMinimum>
<PermissionSet Unrestricted="true" ID="Custom" SameSite="site" />
<defaultAssemblyRequest permissionSetReference="Custom" />
</applicationRequestMinimum>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<!-- UAC Manifest Options
If you want to change the Windows User Account Control level replace the
requestedExecutionLevel node with one of the following.
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
<requestedExecutionLevel level="highestAvailable" uiAccess="false" />
Specifying requestedExecutionLevel element will disable file and registry virtualization.
Remove this element if your application requires this virtualization for backwards
compatibility.
-->
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
</requestedPrivileges>
</security>
</trustInfo>
<dependency>
<dependentOS>
<osVersionInfo>
<os majorVersion="5" minorVersion="1" buildNumber="2600" servicePackMajor="0" />
</osVersionInfo>
</dependentOS>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="Microsoft.Windows.CommonLanguageRuntime" version="4.0.30319.0" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="Disk Manager.exe" size="253872">
<assemblyIdentity name="Disk Manager" version="1.0.0.0" 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>6HLufkxUWDdm+nzJDQYZA8yUlh1xJhH3e4JTY/EQFQs=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<file name="Disk Manager.exe.config" size="1048">
<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>c/6vlTshT+90JT8TpzR0vyrIsAHlOWYtmmZke0wFGaY=</dsig:DigestValue>
</hash>
</file>
<file name="if_network1_216674.ico" size="106802">
<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>nDs/J1vhb0HJ9OX4T+Y+XS6U02RrO9785rBE/lk+DSk=</dsig:DigestValue>
</hash>
</file>
<file name="if_network-workgroup_118928.ico" size="113146">
<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>V/ZKtqIDEE8t8P4wKM1DPs7JWCtZhKCfHS4Gq1ltZJc=</dsig:DigestValue>
</hash>
</file>
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
<application>
<!-- A list of the Windows versions that this application has been tested on and is
is designed to work with. Uncomment the appropriate elements and Windows will
automatically selected the most compatible environment. -->
<!-- Windows Vista -->
<!--<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}" />-->
<!-- Windows 7 -->
<!--<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}" />-->
<!-- Windows 8 -->
<!--<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}" />-->
<!-- Windows 8.1 -->
<!--<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}" />-->
<!-- Windows 10 -->
<!--<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}" />-->
</application>
</compatibility>
</asmv1:assembly>

Binary file not shown.

View File

@@ -0,0 +1 @@
ca0bcd62dfcde0ec5edfb8581caad9bc84a3efc8

View File

@@ -0,0 +1,31 @@
c:\users\micha\documents\visual studio 2015\Projects\Disk Manager\Disk Manager\bin\Debug\Disk Manager.exe.config
c:\users\micha\documents\visual studio 2015\Projects\Disk Manager\Disk Manager\bin\Debug\Disk Manager.exe
c:\users\micha\documents\visual studio 2015\Projects\Disk Manager\Disk Manager\bin\Debug\Disk Manager.pdb
c:\users\micha\documents\visual studio 2015\Projects\Disk Manager\Disk Manager\bin\Debug\Disk Manager.xml
c:\users\micha\documents\visual studio 2015\Projects\Disk Manager\Disk Manager\obj\Debug\Disk Manager.vbprojResolveAssemblyReference.cache
c:\users\micha\documents\visual studio 2015\Projects\Disk Manager\Disk Manager\obj\Debug\Disk_Manager.Resources.resources
c:\users\micha\documents\visual studio 2015\Projects\Disk Manager\Disk Manager\obj\Debug\Disk Manager.vbproj.GenerateResource.Cache
c:\users\micha\documents\visual studio 2015\Projects\Disk Manager\Disk Manager\obj\Debug\Disk Manager.exe
c:\users\micha\documents\visual studio 2015\Projects\Disk Manager\Disk Manager\obj\Debug\Disk Manager.xml
c:\users\micha\documents\visual studio 2015\Projects\Disk Manager\Disk Manager\obj\Debug\Disk Manager.pdb
c:\users\micha\documents\visual studio 2015\Projects\Disk Manager\Disk Manager\obj\Debug\Disk_Manager.Main.resources
C:\Users\micha\documents\visual studio 2015\Projects\Disk Manager\Disk Manager\bin\Debug\Disk Manager.exe.manifest
C:\Users\micha\documents\visual studio 2015\Projects\Disk Manager\Disk Manager\bin\Debug\Disk Manager.application
C:\Users\micha\documents\visual studio 2015\Projects\Disk Manager\Disk Manager\obj\Debug\Disk Manager.exe.manifest
C:\Users\micha\documents\visual studio 2015\Projects\Disk Manager\Disk Manager\obj\Debug\Disk Manager.application
\\Mediapc\d\z_MikePC_Backup\Documents\Visual Studio 2015\Projects\Disk Manager\Disk Manager\bin\Debug\Disk Manager.exe.config
\\Mediapc\d\z_MikePC_Backup\Documents\Visual Studio 2015\Projects\Disk Manager\Disk Manager\bin\Debug\Disk Manager.exe.manifest
\\Mediapc\d\z_MikePC_Backup\Documents\Visual Studio 2015\Projects\Disk Manager\Disk Manager\bin\Debug\Disk Manager.application
\\Mediapc\d\z_MikePC_Backup\Documents\Visual Studio 2015\Projects\Disk Manager\Disk Manager\bin\Debug\Disk Manager.exe
\\Mediapc\d\z_MikePC_Backup\Documents\Visual Studio 2015\Projects\Disk Manager\Disk Manager\bin\Debug\Disk Manager.pdb
\\Mediapc\d\z_MikePC_Backup\Documents\Visual Studio 2015\Projects\Disk Manager\Disk Manager\bin\Debug\Disk Manager.xml
\\Mediapc\d\z_MikePC_Backup\Documents\Visual Studio 2015\Projects\Disk Manager\Disk Manager\obj\Debug\Disk Manager.vbprojAssemblyReference.cache
\\Mediapc\d\z_MikePC_Backup\Documents\Visual Studio 2015\Projects\Disk Manager\Disk Manager\obj\Debug\Disk_Manager.Main.resources
\\Mediapc\d\z_MikePC_Backup\Documents\Visual Studio 2015\Projects\Disk Manager\Disk Manager\obj\Debug\Disk_Manager.Resources.resources
\\Mediapc\d\z_MikePC_Backup\Documents\Visual Studio 2015\Projects\Disk Manager\Disk Manager\obj\Debug\Disk Manager.vbproj.GenerateResource.cache
\\Mediapc\d\z_MikePC_Backup\Documents\Visual Studio 2015\Projects\Disk Manager\Disk Manager\obj\Debug\Disk Manager.vbproj.CoreCompileInputs.cache
\\Mediapc\d\z_MikePC_Backup\Documents\Visual Studio 2015\Projects\Disk Manager\Disk Manager\obj\Debug\Disk Manager.exe.manifest
\\Mediapc\d\z_MikePC_Backup\Documents\Visual Studio 2015\Projects\Disk Manager\Disk Manager\obj\Debug\Disk Manager.application
\\Mediapc\d\z_MikePC_Backup\Documents\Visual Studio 2015\Projects\Disk Manager\Disk Manager\obj\Debug\Disk Manager.exe
\\Mediapc\d\z_MikePC_Backup\Documents\Visual Studio 2015\Projects\Disk Manager\Disk Manager\obj\Debug\Disk Manager.xml
\\Mediapc\d\z_MikePC_Backup\Documents\Visual Studio 2015\Projects\Disk Manager\Disk Manager\obj\Debug\Disk Manager.pdb

View File

@@ -0,0 +1,26 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>
Disk Manager
</name>
</assembly>
<members>
<member name="T:Disk_Manager.My.Resources.Resources">
<summary>
A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member>
<member name="P:Disk_Manager.My.Resources.Resources.ResourceManager">
<summary>
Returns the cached ResourceManager instance used by this class.
</summary>
</member>
<member name="P:Disk_Manager.My.Resources.Resources.Culture">
<summary>
Overrides the current thread's CurrentUICulture property for all
resource lookups using this strongly typed resource class.
</summary>
</member>
</members>
</doc>

Binary file not shown.

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<assemblyIdentity name="Disk Manager.application" version="0.0.1.0" publicKeyToken="567a80808fa0355b" language="neutral" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" />
<description asmv2:publisher="Disk Manager" asmv2:product="Disk Manager" xmlns="urn:schemas-microsoft-com:asm.v1" />
<deployment install="true" mapFileExtensions="true" />
<compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2">
<framework targetVersion="4.5.2" profile="Full" supportedRuntime="4.0.30319" />
</compatibleFrameworks>
<dependency>
<dependentAssembly dependencyType="install" codebase="Application Files\Disk Manager_0_0_1_0\Disk Manager.exe.manifest" size="7130">
<assemblyIdentity name="Disk Manager.exe" version="0.0.1.0" publicKeyToken="567a80808fa0355b" language="neutral" processorArchitecture="msil" type="win32" />
<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>Z5vtNidnbB+oEkvVwGxzq+KU1N6e1V1t0kLLjBemTeA=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<publisherIdentity name="CN=MIKE-PC\micha" issuerKeyHash="5327ed277f65b50666bf74ec2cbd6e4588dac126" /><Signature Id="StrongNameSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>Vcf7YKtw8WWOQFnt4pwXsJ1bnWsmpKuefotGtawmLzc=</DigestValue></Reference></SignedInfo><SignatureValue>FmdSmQabjuULLgFljMq+tOUkbfcwqY0hjExgfY9j2GVysZoBE0QqmPCnheQdO40qJOPIBEQWksgu84NnvkZkOO1ZO0sKo2G4OVpX8pwUnzEEs1r3BXFCkD8tmnvqs1+h2M+afoYHp9E4VTkEcSCi0UftYCnMPDF6uJ15ukWqbMo=</SignatureValue><KeyInfo Id="StrongNameKeyInfo"><KeyValue><RSAKeyValue><Modulus>0A/YiMgkoW3Ek0vBsqvrrPXGL4ImfdcwMJgnHkmVkARt8bQeTBhMol4SglCH5M5xb79mDrexqxFkYJfE2SAadV07B+Sit5nc/OMERu8pCr806UqwnxteEg+JkpSrFciVkUuaOWJMN7eW6chX1bMCvxosopsdtA0PXxji/I3M/zE=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><msrel:RelData xmlns:msrel="http://schemas.microsoft.com/windows/rel/2005/reldata"><r:license xmlns:r="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:as="http://schemas.microsoft.com/windows/pki/2005/Authenticode"><r:grant><as:ManifestInformation Hash="372f26acb5468b7e9eaba4266b9d5b9db0179ce2ed59408e65f170ab60fbc755" Description="" Url=""><as:assemblyIdentity name="Disk Manager.application" version="0.0.1.0" publicKeyToken="567a80808fa0355b" language="neutral" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" /></as:ManifestInformation><as:SignedBy /><as:AuthenticodePublisher><as:X509SubjectName>CN=MIKE-PC\micha</as:X509SubjectName></as:AuthenticodePublisher></r:grant><r:issuer><Signature Id="AuthenticodeSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>VupusrS7Uit6XfytCQ3cwpxsO9zVpEX0GzdW11/f/0c=</DigestValue></Reference></SignedInfo><SignatureValue>tHfhaKjj0iV+1UyNRSu5IQ6Hst+AVVGfLSB3iKal5NI7Cacz9bLxShQMR5SWRW/rodzl4TkXvF0QtcH2EWlL/hITxyu7eux+MHRcvB2g5Mh6aE8aSQnBLfoKihG5iScE9UWtuu9MLzLVUL8HFdMWvjIkdMNpC043C5pQruePxsU=</SignatureValue><KeyInfo><KeyValue><RSAKeyValue><Modulus>0A/YiMgkoW3Ek0vBsqvrrPXGL4ImfdcwMJgnHkmVkARt8bQeTBhMol4SglCH5M5xb79mDrexqxFkYJfE2SAadV07B+Sit5nc/OMERu8pCr806UqwnxteEg+JkpSrFciVkUuaOWJMN7eW6chX1bMCvxosopsdtA0PXxji/I3M/zE=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><X509Data><X509Certificate>MIIBzTCCATagAwIBAgIQEmGCKGTfRKVEFb6U0NQ8GDANBgkqhkiG9w0BAQsFADAlMSMwIQYDVQQDHhoATQBJAEsARQAtAFAAQwBcAG0AaQBjAGgAYTAeFw0xODA1MDgyMDM0NDdaFw0xOTA1MDkwMjM0NDdaMCUxIzAhBgNVBAMeGgBNAEkASwBFAC0AUABDAFwAbQBpAGMAaABhMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDQD9iIyCShbcSTS8Gyq+us9cYvgiZ91zAwmCceSZWQBG3xtB5MGEyiXhKCUIfkznFvv2YOt7GrEWRgl8TZIBp1XTsH5KK3mdz84wRG7ykKvzTpSrCfG14SD4mSlKsVyJWRS5o5Ykw3t5bpyFfVswK/Giyimx20DQ9fGOL8jcz/MQIDAQABMA0GCSqGSIb3DQEBCwUAA4GBACOGzGIJZVChmMAma5kfwvg6am5sbd7IabI5/gJVfK3SkEp1l21n6hPMIuo4Ihh1kL7fgQ1kRvVKSFqaWUtTvi4j9ZtZxQtgmlQaRVz4GmUT+lNvdawD5n3P3/0dwOntv/KZZFiUo9prbZkQVlKu749BbGJj5BWVtS/ZVoyZqc3F</X509Certificate></X509Data></KeyInfo></Signature></r:issuer></r:license></msrel:RelData></KeyInfo></Signature></asmv1:assembly>

View File

@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="Disk_Manager.My.MySettings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
</sectionGroup>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
<userSettings>
<Disk_Manager.My.MySettings>
<setting name="POWER_IP" serializeAs="String">
<value>192.168.0.200</value>
</setting>
<setting name="OS_IP" serializeAs="String">
<value>192.168.0.17</value>
</setting>
<setting name="LANG" serializeAs="String">
<value>Polish</value>
</setting>
</Disk_Manager.My.MySettings>
</userSettings>
</configuration>

View File

@@ -0,0 +1,65 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<asmv1:assemblyIdentity name="Disk Manager.exe" version="0.0.1.0" publicKeyToken="567a80808fa0355b" language="neutral" processorArchitecture="msil" type="win32" />
<application />
<entryPoint>
<assemblyIdentity name="Disk Manager" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<commandLine file="Disk Manager.exe" parameters="" />
</entryPoint>
<trustInfo>
<security>
<applicationRequestMinimum>
<PermissionSet Unrestricted="true" ID="Custom" SameSite="site" />
<defaultAssemblyRequest permissionSetReference="Custom" />
</applicationRequestMinimum>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<!--
UAC Manifest Options
If you want to change the Windows User Account Control level replace the
requestedExecutionLevel node with one of the following.
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
<requestedExecutionLevel level="highestAvailable" uiAccess="false" />
If you want to utilize File and Registry Virtualization for backward
compatibility then delete the requestedExecutionLevel node.
-->
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
</requestedPrivileges>
</security>
</trustInfo>
<dependency>
<dependentOS>
<osVersionInfo>
<os majorVersion="5" minorVersion="1" buildNumber="2600" servicePackMajor="0" />
</osVersionInfo>
</dependentOS>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="Microsoft.Windows.CommonLanguageRuntime" version="4.0.30319.0" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="Disk Manager.exe" size="26544">
<assemblyIdentity name="Disk Manager" version="1.0.0.0" 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>9WKc7LQfl41chnM68syXLa+y+UrvW4eLT0WtdOHXbRM=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<file name="Disk Manager.exe.config" size="1167">
<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>oJuGm+r8qNpciEAsXzTmb9/1bj5Rz3T80FrHPnWHjV8=</dsig:DigestValue>
</hash>
</file>
<publisherIdentity name="CN=MIKE-PC\micha" issuerKeyHash="5327ed277f65b50666bf74ec2cbd6e4588dac126" /><Signature Id="StrongNameSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>Mx7wnVlyM65nMXl7t7WWvrhnjpy8vfRRTmm8+gI+vnQ=</DigestValue></Reference></SignedInfo><SignatureValue>AqrrD6dRCX0k/Dyvri5ou/Pum1eoKU6pSsZ95glO42xo7xdsqIoCvT+hxIIBSlRA/wknOh2fXbvp3wf1XBscm8TajLJgN6vXJDjF44FChG6PFvIV4sB3ax6VJfmDUiLq5653ZQLaPSiWcanHTLuCyl+pqJtSmJxnMhNmLMqlrOI=</SignatureValue><KeyInfo Id="StrongNameKeyInfo"><KeyValue><RSAKeyValue><Modulus>0A/YiMgkoW3Ek0vBsqvrrPXGL4ImfdcwMJgnHkmVkARt8bQeTBhMol4SglCH5M5xb79mDrexqxFkYJfE2SAadV07B+Sit5nc/OMERu8pCr806UqwnxteEg+JkpSrFciVkUuaOWJMN7eW6chX1bMCvxosopsdtA0PXxji/I3M/zE=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><msrel:RelData xmlns:msrel="http://schemas.microsoft.com/windows/rel/2005/reldata"><r:license xmlns:r="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:as="http://schemas.microsoft.com/windows/pki/2005/Authenticode"><r:grant><as:ManifestInformation Hash="74be3e02fabc694e51f4bdbc9c8e67b8be96b5b77b793167ae3372599df01e33" Description="" Url=""><as:assemblyIdentity name="Disk Manager.exe" version="0.0.1.0" publicKeyToken="567a80808fa0355b" language="neutral" processorArchitecture="msil" type="win32" /></as:ManifestInformation><as:SignedBy /><as:AuthenticodePublisher><as:X509SubjectName>CN=MIKE-PC\micha</as:X509SubjectName></as:AuthenticodePublisher></r:grant><r:issuer><Signature Id="AuthenticodeSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>jqPLIj5gJPw3EfPKplBC4MCoTVDkRNutu8hxBakMn4g=</DigestValue></Reference></SignedInfo><SignatureValue>Qm6dTrj3P/V9ECh4UAemlqPF2R6wKBM+eXRYDu/fcKlr23AkTjA4fxDv62FV/W6D49j0f/dY4WhUk4uDOkYldCwdEL7Va/M/DIE/Seozu/oOnoJeB5u3KhDX4bgYfrjO/LoOp3g1cM9GASMlLBMlPf3CmfJJdmBE5XDNzbil9DM=</SignatureValue><KeyInfo><KeyValue><RSAKeyValue><Modulus>0A/YiMgkoW3Ek0vBsqvrrPXGL4ImfdcwMJgnHkmVkARt8bQeTBhMol4SglCH5M5xb79mDrexqxFkYJfE2SAadV07B+Sit5nc/OMERu8pCr806UqwnxteEg+JkpSrFciVkUuaOWJMN7eW6chX1bMCvxosopsdtA0PXxji/I3M/zE=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><X509Data><X509Certificate>MIIBzTCCATagAwIBAgIQEmGCKGTfRKVEFb6U0NQ8GDANBgkqhkiG9w0BAQsFADAlMSMwIQYDVQQDHhoATQBJAEsARQAtAFAAQwBcAG0AaQBjAGgAYTAeFw0xODA1MDgyMDM0NDdaFw0xOTA1MDkwMjM0NDdaMCUxIzAhBgNVBAMeGgBNAEkASwBFAC0AUABDAFwAbQBpAGMAaABhMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDQD9iIyCShbcSTS8Gyq+us9cYvgiZ91zAwmCceSZWQBG3xtB5MGEyiXhKCUIfkznFvv2YOt7GrEWRgl8TZIBp1XTsH5KK3mdz84wRG7ykKvzTpSrCfG14SD4mSlKsVyJWRS5o5Ykw3t5bpyFfVswK/Giyimx20DQ9fGOL8jcz/MQIDAQABMA0GCSqGSIb3DQEBCwUAA4GBACOGzGIJZVChmMAma5kfwvg6am5sbd7IabI5/gJVfK3SkEp1l21n6hPMIuo4Ihh1kL7fgQ1kRvVKSFqaWUtTvi4j9ZtZxQtgmlQaRVz4GmUT+lNvdawD5n3P3/0dwOntv/KZZFiUo9prbZkQVlKu749BbGJj5BWVtS/ZVoyZqc3F</X509Certificate></X509Data></KeyInfo></Signature></r:issuer></r:license></msrel:RelData></KeyInfo></Signature></asmv1:assembly>

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<assemblyIdentity name="Disk Manager.application" version="0.0.2.0" publicKeyToken="567a80808fa0355b" language="neutral" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" />
<description asmv2:publisher="Disk Manager" asmv2:product="Disk Manager" xmlns="urn:schemas-microsoft-com:asm.v1" />
<deployment install="true" mapFileExtensions="true" />
<compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2">
<framework targetVersion="4.5.2" profile="Full" supportedRuntime="4.0.30319" />
</compatibleFrameworks>
<dependency>
<dependentAssembly dependencyType="install" codebase="Application Files\Disk Manager_0_0_2_0\Disk Manager.exe.manifest" size="7130">
<assemblyIdentity name="Disk Manager.exe" version="0.0.2.0" publicKeyToken="567a80808fa0355b" language="neutral" processorArchitecture="msil" type="win32" />
<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>kN9QN4m+jyS55PA537woG5WpmFvZkmzFqZZDrvacyLA=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<publisherIdentity name="CN=MIKE-PC\micha" issuerKeyHash="5327ed277f65b50666bf74ec2cbd6e4588dac126" /><Signature Id="StrongNameSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>2b5GK+5cE5IQ75mbMIZVjE2W8/0bX/tUnMXZ0E6+aQw=</DigestValue></Reference></SignedInfo><SignatureValue>Brp9d8M9vw4wn3+i22THLW9l36C2u/byDyVFvh2GHVtL18Zr2pYyBNIa77uGsyklBRGe4AUUg4e9iHoS69nJGwPWsUZzaFaZO6c0vpDPyOJghz6i8UcPyXIwDRoThvlTZ7ydReYv8rp2EWvCTD/eeUw00PXzyFTbof6ln0iPR9k=</SignatureValue><KeyInfo Id="StrongNameKeyInfo"><KeyValue><RSAKeyValue><Modulus>0A/YiMgkoW3Ek0vBsqvrrPXGL4ImfdcwMJgnHkmVkARt8bQeTBhMol4SglCH5M5xb79mDrexqxFkYJfE2SAadV07B+Sit5nc/OMERu8pCr806UqwnxteEg+JkpSrFciVkUuaOWJMN7eW6chX1bMCvxosopsdtA0PXxji/I3M/zE=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><msrel:RelData xmlns:msrel="http://schemas.microsoft.com/windows/rel/2005/reldata"><r:license xmlns:r="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:as="http://schemas.microsoft.com/windows/pki/2005/Authenticode"><r:grant><as:ManifestInformation Hash="0c69be4ed0d9c59c54fb5f1bfdf3964d8c5586309b99ef1092135cee2b46bed9" Description="" Url=""><as:assemblyIdentity name="Disk Manager.application" version="0.0.2.0" publicKeyToken="567a80808fa0355b" language="neutral" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" /></as:ManifestInformation><as:SignedBy /><as:AuthenticodePublisher><as:X509SubjectName>CN=MIKE-PC\micha</as:X509SubjectName></as:AuthenticodePublisher></r:grant><r:issuer><Signature Id="AuthenticodeSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>Q5ABEMy5xYbjx0bgnBRKpPsvd8IX4km+IJSi6afuY2M=</DigestValue></Reference></SignedInfo><SignatureValue>TPb+Uik1//D3aO2VheQs1CpQfl0ZmNu0KfGd7nnaRRRkpVKLg2Y/Xkj65jGjMSbcE48vId1i7lz9u+UrhSQlkAd3zW25lF/xj92dqXY+bL8hhejTouLpb5KPXO1GFVYvA2/zYvCLB2WSsLjw/pDJ3TmDIh2AjjQ5Alzs9yUbUxU=</SignatureValue><KeyInfo><KeyValue><RSAKeyValue><Modulus>0A/YiMgkoW3Ek0vBsqvrrPXGL4ImfdcwMJgnHkmVkARt8bQeTBhMol4SglCH5M5xb79mDrexqxFkYJfE2SAadV07B+Sit5nc/OMERu8pCr806UqwnxteEg+JkpSrFciVkUuaOWJMN7eW6chX1bMCvxosopsdtA0PXxji/I3M/zE=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><X509Data><X509Certificate>MIIBzTCCATagAwIBAgIQEmGCKGTfRKVEFb6U0NQ8GDANBgkqhkiG9w0BAQsFADAlMSMwIQYDVQQDHhoATQBJAEsARQAtAFAAQwBcAG0AaQBjAGgAYTAeFw0xODA1MDgyMDM0NDdaFw0xOTA1MDkwMjM0NDdaMCUxIzAhBgNVBAMeGgBNAEkASwBFAC0AUABDAFwAbQBpAGMAaABhMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDQD9iIyCShbcSTS8Gyq+us9cYvgiZ91zAwmCceSZWQBG3xtB5MGEyiXhKCUIfkznFvv2YOt7GrEWRgl8TZIBp1XTsH5KK3mdz84wRG7ykKvzTpSrCfG14SD4mSlKsVyJWRS5o5Ykw3t5bpyFfVswK/Giyimx20DQ9fGOL8jcz/MQIDAQABMA0GCSqGSIb3DQEBCwUAA4GBACOGzGIJZVChmMAma5kfwvg6am5sbd7IabI5/gJVfK3SkEp1l21n6hPMIuo4Ihh1kL7fgQ1kRvVKSFqaWUtTvi4j9ZtZxQtgmlQaRVz4GmUT+lNvdawD5n3P3/0dwOntv/KZZFiUo9prbZkQVlKu749BbGJj5BWVtS/ZVoyZqc3F</X509Certificate></X509Data></KeyInfo></Signature></r:issuer></r:license></msrel:RelData></KeyInfo></Signature></asmv1:assembly>

View File

@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="Disk_Manager.My.MySettings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
</sectionGroup>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
<userSettings>
<Disk_Manager.My.MySettings>
<setting name="POWER_IP" serializeAs="String">
<value>192.168.0.200</value>
</setting>
<setting name="OS_IP" serializeAs="String">
<value>192.168.0.17</value>
</setting>
<setting name="LANG" serializeAs="String">
<value>Polish</value>
</setting>
</Disk_Manager.My.MySettings>
</userSettings>
</configuration>

View File

@@ -0,0 +1,65 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<asmv1:assemblyIdentity name="Disk Manager.exe" version="0.0.2.0" publicKeyToken="567a80808fa0355b" language="neutral" processorArchitecture="msil" type="win32" />
<application />
<entryPoint>
<assemblyIdentity name="Disk Manager" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<commandLine file="Disk Manager.exe" parameters="" />
</entryPoint>
<trustInfo>
<security>
<applicationRequestMinimum>
<PermissionSet Unrestricted="true" ID="Custom" SameSite="site" />
<defaultAssemblyRequest permissionSetReference="Custom" />
</applicationRequestMinimum>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<!--
UAC Manifest Options
If you want to change the Windows User Account Control level replace the
requestedExecutionLevel node with one of the following.
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
<requestedExecutionLevel level="highestAvailable" uiAccess="false" />
If you want to utilize File and Registry Virtualization for backward
compatibility then delete the requestedExecutionLevel node.
-->
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
</requestedPrivileges>
</security>
</trustInfo>
<dependency>
<dependentOS>
<osVersionInfo>
<os majorVersion="5" minorVersion="1" buildNumber="2600" servicePackMajor="0" />
</osVersionInfo>
</dependentOS>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="Microsoft.Windows.CommonLanguageRuntime" version="4.0.30319.0" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="Disk Manager.exe" size="27056">
<assemblyIdentity name="Disk Manager" version="1.0.0.0" 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>no791Ojs2jw52/Dv1sGNtXa/s3gupdjZFhc3DY0zwx0=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<file name="Disk Manager.exe.config" size="1167">
<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>oJuGm+r8qNpciEAsXzTmb9/1bj5Rz3T80FrHPnWHjV8=</dsig:DigestValue>
</hash>
</file>
<publisherIdentity name="CN=MIKE-PC\micha" issuerKeyHash="5327ed277f65b50666bf74ec2cbd6e4588dac126" /><Signature Id="StrongNameSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>Oc4ZDzW3jSN5fX7VUaU4CbBTU78s7/AxqYYQ/V+ftBo=</DigestValue></Reference></SignedInfo><SignatureValue>T1CxEeQrA5lDH5+ZM+O8kdfHIRARkelzpyfY1qBZZZDvY3+tEtGzXnJQjd9+QXI4VlEq5czSvxR4M+Gsf081iwHJ0sfgdYw4I0yz1YRYnSnIwoFPS/QzdsMyMZjExQVl0C37vnMXJqI5kQu4jdgnQQEnExzGzjG3mREfv0+wdLc=</SignatureValue><KeyInfo Id="StrongNameKeyInfo"><KeyValue><RSAKeyValue><Modulus>0A/YiMgkoW3Ek0vBsqvrrPXGL4ImfdcwMJgnHkmVkARt8bQeTBhMol4SglCH5M5xb79mDrexqxFkYJfE2SAadV07B+Sit5nc/OMERu8pCr806UqwnxteEg+JkpSrFciVkUuaOWJMN7eW6chX1bMCvxosopsdtA0PXxji/I3M/zE=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><msrel:RelData xmlns:msrel="http://schemas.microsoft.com/windows/rel/2005/reldata"><r:license xmlns:r="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:as="http://schemas.microsoft.com/windows/pki/2005/Authenticode"><r:grant><as:ManifestInformation Hash="1ab49f5ffd1086a931f0ef2cbf5353b00938a551d57e7d79238db7350f19ce39" Description="" Url=""><as:assemblyIdentity name="Disk Manager.exe" version="0.0.2.0" publicKeyToken="567a80808fa0355b" language="neutral" processorArchitecture="msil" type="win32" /></as:ManifestInformation><as:SignedBy /><as:AuthenticodePublisher><as:X509SubjectName>CN=MIKE-PC\micha</as:X509SubjectName></as:AuthenticodePublisher></r:grant><r:issuer><Signature Id="AuthenticodeSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>fif/BAz0NAySkH59PLBht6Qu/8rGQS3TTVOpZ65YoDs=</DigestValue></Reference></SignedInfo><SignatureValue>rF5VUsDpSzS0e2qxAGe23P1wQ0NW7crFd+wmJ/JK6ubORW8gejNjUCrlrKSqk8v5a7kf3jlKvoIbhML60pkvocUEmsOWy0afieJRGuP1OjzpiMegFkiH13Z90KHkfnghcrnHDlCpxEaR2sZVIF7WSYcngU9DiA8HK3sRtSWQ51w=</SignatureValue><KeyInfo><KeyValue><RSAKeyValue><Modulus>0A/YiMgkoW3Ek0vBsqvrrPXGL4ImfdcwMJgnHkmVkARt8bQeTBhMol4SglCH5M5xb79mDrexqxFkYJfE2SAadV07B+Sit5nc/OMERu8pCr806UqwnxteEg+JkpSrFciVkUuaOWJMN7eW6chX1bMCvxosopsdtA0PXxji/I3M/zE=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><X509Data><X509Certificate>MIIBzTCCATagAwIBAgIQEmGCKGTfRKVEFb6U0NQ8GDANBgkqhkiG9w0BAQsFADAlMSMwIQYDVQQDHhoATQBJAEsARQAtAFAAQwBcAG0AaQBjAGgAYTAeFw0xODA1MDgyMDM0NDdaFw0xOTA1MDkwMjM0NDdaMCUxIzAhBgNVBAMeGgBNAEkASwBFAC0AUABDAFwAbQBpAGMAaABhMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDQD9iIyCShbcSTS8Gyq+us9cYvgiZ91zAwmCceSZWQBG3xtB5MGEyiXhKCUIfkznFvv2YOt7GrEWRgl8TZIBp1XTsH5KK3mdz84wRG7ykKvzTpSrCfG14SD4mSlKsVyJWRS5o5Ykw3t5bpyFfVswK/Giyimx20DQ9fGOL8jcz/MQIDAQABMA0GCSqGSIb3DQEBCwUAA4GBACOGzGIJZVChmMAma5kfwvg6am5sbd7IabI5/gJVfK3SkEp1l21n6hPMIuo4Ihh1kL7fgQ1kRvVKSFqaWUtTvi4j9ZtZxQtgmlQaRVz4GmUT+lNvdawD5n3P3/0dwOntv/KZZFiUo9prbZkQVlKu749BbGJj5BWVtS/ZVoyZqc3F</X509Certificate></X509Data></KeyInfo></Signature></r:issuer></r:license></msrel:RelData></KeyInfo></Signature></asmv1:assembly>

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<assemblyIdentity name="Disk Manager.application" version="0.0.3.0" publicKeyToken="567a80808fa0355b" language="neutral" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" />
<description asmv2:publisher="Disk Manager" asmv2:product="Disk Manager" xmlns="urn:schemas-microsoft-com:asm.v1" />
<deployment install="true" mapFileExtensions="true" />
<compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2">
<framework targetVersion="4.5.2" profile="Full" supportedRuntime="4.0.30319" />
</compatibleFrameworks>
<dependency>
<dependentAssembly dependencyType="install" codebase="Application Files\Disk Manager_0_0_3_0\Disk Manager.exe.manifest" size="7130">
<assemblyIdentity name="Disk Manager.exe" version="0.0.3.0" publicKeyToken="567a80808fa0355b" language="neutral" processorArchitecture="msil" type="win32" />
<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>FrhcK1Xzpts4HSWEE5FdiOUqvOyNP61iAbXdJnm0jrc=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<publisherIdentity name="CN=MIKE-PC\micha" issuerKeyHash="5327ed277f65b50666bf74ec2cbd6e4588dac126" /><Signature Id="StrongNameSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>VkwnXZVM7nKrTevtyqzgCGzc5Gges+jpfrhmS+ltVS8=</DigestValue></Reference></SignedInfo><SignatureValue>QZMuYOKRfnPukKefZICBFeIz2PQhCWNDOG/jTAB0H8X7YwYaOlSlPCF3XvS7tzeNq1LmaZ8NIP5GaR3adUClWx98Ed11ONP/bFLGzL8vyj+bKayM/h9vdYsRDxGpH2U338jHSvjzhpSlyCxWRY/cl/lmAEeJ5jaltcSBKDX8cF8=</SignatureValue><KeyInfo Id="StrongNameKeyInfo"><KeyValue><RSAKeyValue><Modulus>0A/YiMgkoW3Ek0vBsqvrrPXGL4ImfdcwMJgnHkmVkARt8bQeTBhMol4SglCH5M5xb79mDrexqxFkYJfE2SAadV07B+Sit5nc/OMERu8pCr806UqwnxteEg+JkpSrFciVkUuaOWJMN7eW6chX1bMCvxosopsdtA0PXxji/I3M/zE=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><msrel:RelData xmlns:msrel="http://schemas.microsoft.com/windows/rel/2005/reldata"><r:license xmlns:r="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:as="http://schemas.microsoft.com/windows/pki/2005/Authenticode"><r:grant><as:ManifestInformation Hash="2f556de94b66b87ee9e8b31e68e4dc6c08e0accaedeb4dab72ee4c955d274c56" Description="" Url=""><as:assemblyIdentity name="Disk Manager.application" version="0.0.3.0" publicKeyToken="567a80808fa0355b" language="neutral" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" /></as:ManifestInformation><as:SignedBy /><as:AuthenticodePublisher><as:X509SubjectName>CN=MIKE-PC\micha</as:X509SubjectName></as:AuthenticodePublisher></r:grant><r:issuer><Signature Id="AuthenticodeSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>H/PVlf1iFEPf13IxaF1YLN8RLyOWITeqyZ1cetjY/0U=</DigestValue></Reference></SignedInfo><SignatureValue>hVX3YlQI9qvExlrpTMFTclzVzqsiG8CwGj299znQF4wjMsziF9X7ne1QuZUi6er/Wdx2xfQRNBerEYm9GsUCTpu3w8DFefbB0XNNkdqr1uemtRFlDbLJdYv6rWrJHEFu0NoDACCfPFXhYLC3j8yyzLdzQMYeNL91m/ry5xfQy/Y=</SignatureValue><KeyInfo><KeyValue><RSAKeyValue><Modulus>0A/YiMgkoW3Ek0vBsqvrrPXGL4ImfdcwMJgnHkmVkARt8bQeTBhMol4SglCH5M5xb79mDrexqxFkYJfE2SAadV07B+Sit5nc/OMERu8pCr806UqwnxteEg+JkpSrFciVkUuaOWJMN7eW6chX1bMCvxosopsdtA0PXxji/I3M/zE=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><X509Data><X509Certificate>MIIBzTCCATagAwIBAgIQEmGCKGTfRKVEFb6U0NQ8GDANBgkqhkiG9w0BAQsFADAlMSMwIQYDVQQDHhoATQBJAEsARQAtAFAAQwBcAG0AaQBjAGgAYTAeFw0xODA1MDgyMDM0NDdaFw0xOTA1MDkwMjM0NDdaMCUxIzAhBgNVBAMeGgBNAEkASwBFAC0AUABDAFwAbQBpAGMAaABhMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDQD9iIyCShbcSTS8Gyq+us9cYvgiZ91zAwmCceSZWQBG3xtB5MGEyiXhKCUIfkznFvv2YOt7GrEWRgl8TZIBp1XTsH5KK3mdz84wRG7ykKvzTpSrCfG14SD4mSlKsVyJWRS5o5Ykw3t5bpyFfVswK/Giyimx20DQ9fGOL8jcz/MQIDAQABMA0GCSqGSIb3DQEBCwUAA4GBACOGzGIJZVChmMAma5kfwvg6am5sbd7IabI5/gJVfK3SkEp1l21n6hPMIuo4Ihh1kL7fgQ1kRvVKSFqaWUtTvi4j9ZtZxQtgmlQaRVz4GmUT+lNvdawD5n3P3/0dwOntv/KZZFiUo9prbZkQVlKu749BbGJj5BWVtS/ZVoyZqc3F</X509Certificate></X509Data></KeyInfo></Signature></r:issuer></r:license></msrel:RelData></KeyInfo></Signature></asmv1:assembly>

View File

@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="Disk_Manager.My.MySettings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
</sectionGroup>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
<userSettings>
<Disk_Manager.My.MySettings>
<setting name="POWER_IP" serializeAs="String">
<value>192.168.0.200</value>
</setting>
<setting name="OS_IP" serializeAs="String">
<value>192.168.0.17</value>
</setting>
<setting name="LANG" serializeAs="String">
<value>Polish</value>
</setting>
</Disk_Manager.My.MySettings>
</userSettings>
</configuration>

View File

@@ -0,0 +1,65 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<asmv1:assemblyIdentity name="Disk Manager.exe" version="0.0.3.0" publicKeyToken="567a80808fa0355b" language="neutral" processorArchitecture="msil" type="win32" />
<application />
<entryPoint>
<assemblyIdentity name="Disk Manager" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<commandLine file="Disk Manager.exe" parameters="" />
</entryPoint>
<trustInfo>
<security>
<applicationRequestMinimum>
<PermissionSet Unrestricted="true" ID="Custom" SameSite="site" />
<defaultAssemblyRequest permissionSetReference="Custom" />
</applicationRequestMinimum>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<!--
UAC Manifest Options
If you want to change the Windows User Account Control level replace the
requestedExecutionLevel node with one of the following.
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
<requestedExecutionLevel level="highestAvailable" uiAccess="false" />
If you want to utilize File and Registry Virtualization for backward
compatibility then delete the requestedExecutionLevel node.
-->
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
</requestedPrivileges>
</security>
</trustInfo>
<dependency>
<dependentOS>
<osVersionInfo>
<os majorVersion="5" minorVersion="1" buildNumber="2600" servicePackMajor="0" />
</osVersionInfo>
</dependentOS>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="Microsoft.Windows.CommonLanguageRuntime" version="4.0.30319.0" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="Disk Manager.exe" size="26544">
<assemblyIdentity name="Disk Manager" version="1.0.0.0" 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>9OOQBEhY58aEleDhFEN1XkvLCMEQ+0iOz1Vi0Xel4gM=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<file name="Disk Manager.exe.config" size="1167">
<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>oJuGm+r8qNpciEAsXzTmb9/1bj5Rz3T80FrHPnWHjV8=</dsig:DigestValue>
</hash>
</file>
<publisherIdentity name="CN=MIKE-PC\micha" issuerKeyHash="5327ed277f65b50666bf74ec2cbd6e4588dac126" /><Signature Id="StrongNameSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>Bqa2H+V6ZSq7AvzNtRRqIt7wxk6Ttm7wX93vEd1KK2c=</DigestValue></Reference></SignedInfo><SignatureValue>iR2DknM8E70Tzgi2Km/8N8c5NlrNtBq/gHzrOKHRmhZO1aWPjo0tiOI1y1Bt/VuOYctLXGPN/+ZUegHshk78uK06ulv+a14qWib1Lf4kG7kMwIFYGRqbvF2fDo3d7QARAaT3ehUyvTurGw0S28o3mlUQeNfipeNjBoJww38LOzQ=</SignatureValue><KeyInfo Id="StrongNameKeyInfo"><KeyValue><RSAKeyValue><Modulus>0A/YiMgkoW3Ek0vBsqvrrPXGL4ImfdcwMJgnHkmVkARt8bQeTBhMol4SglCH5M5xb79mDrexqxFkYJfE2SAadV07B+Sit5nc/OMERu8pCr806UqwnxteEg+JkpSrFciVkUuaOWJMN7eW6chX1bMCvxosopsdtA0PXxji/I3M/zE=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><msrel:RelData xmlns:msrel="http://schemas.microsoft.com/windows/rel/2005/reldata"><r:license xmlns:r="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:as="http://schemas.microsoft.com/windows/pki/2005/Authenticode"><r:grant><as:ManifestInformation Hash="672b4add11efdd5ff06eb6934ec6f0de226a14b5cdfc02bb2a657ae51fb6a606" Description="" Url=""><as:assemblyIdentity name="Disk Manager.exe" version="0.0.3.0" publicKeyToken="567a80808fa0355b" language="neutral" processorArchitecture="msil" type="win32" /></as:ManifestInformation><as:SignedBy /><as:AuthenticodePublisher><as:X509SubjectName>CN=MIKE-PC\micha</as:X509SubjectName></as:AuthenticodePublisher></r:grant><r:issuer><Signature Id="AuthenticodeSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>SXH1u5jwB3MOSvnPT93JNenN1+A1Rw30XP27h69lYXM=</DigestValue></Reference></SignedInfo><SignatureValue>rnT6FeL/kbP1c9B1uIPDUZGTYDhM8k6AmcC1F8YHyAxl8VjMG4WAttuIzpDAAqpaY6dNjSKYnVivKGotECbrhIEfb99qQjpBJWUxyoSpRS29AvXXt//xtG7/c6NgEx7CricgPEKyfXkjp7IXfz/f30RNRkEFynIdEQdCPwxHhnA=</SignatureValue><KeyInfo><KeyValue><RSAKeyValue><Modulus>0A/YiMgkoW3Ek0vBsqvrrPXGL4ImfdcwMJgnHkmVkARt8bQeTBhMol4SglCH5M5xb79mDrexqxFkYJfE2SAadV07B+Sit5nc/OMERu8pCr806UqwnxteEg+JkpSrFciVkUuaOWJMN7eW6chX1bMCvxosopsdtA0PXxji/I3M/zE=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><X509Data><X509Certificate>MIIBzTCCATagAwIBAgIQEmGCKGTfRKVEFb6U0NQ8GDANBgkqhkiG9w0BAQsFADAlMSMwIQYDVQQDHhoATQBJAEsARQAtAFAAQwBcAG0AaQBjAGgAYTAeFw0xODA1MDgyMDM0NDdaFw0xOTA1MDkwMjM0NDdaMCUxIzAhBgNVBAMeGgBNAEkASwBFAC0AUABDAFwAbQBpAGMAaABhMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDQD9iIyCShbcSTS8Gyq+us9cYvgiZ91zAwmCceSZWQBG3xtB5MGEyiXhKCUIfkznFvv2YOt7GrEWRgl8TZIBp1XTsH5KK3mdz84wRG7ykKvzTpSrCfG14SD4mSlKsVyJWRS5o5Ykw3t5bpyFfVswK/Giyimx20DQ9fGOL8jcz/MQIDAQABMA0GCSqGSIb3DQEBCwUAA4GBACOGzGIJZVChmMAma5kfwvg6am5sbd7IabI5/gJVfK3SkEp1l21n6hPMIuo4Ihh1kL7fgQ1kRvVKSFqaWUtTvi4j9ZtZxQtgmlQaRVz4GmUT+lNvdawD5n3P3/0dwOntv/KZZFiUo9prbZkQVlKu749BbGJj5BWVtS/ZVoyZqc3F</X509Certificate></X509Data></KeyInfo></Signature></r:issuer></r:license></msrel:RelData></KeyInfo></Signature></asmv1:assembly>

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<assemblyIdentity name="Disk Manager.application" version="0.1.4.0" publicKeyToken="567a80808fa0355b" language="neutral" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" />
<description asmv2:publisher="Disk Manager" asmv2:product="Disk Manager" xmlns="urn:schemas-microsoft-com:asm.v1" />
<deployment install="true" mapFileExtensions="true" />
<compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2">
<framework targetVersion="4.5.2" profile="Full" supportedRuntime="4.0.30319" />
</compatibleFrameworks>
<dependency>
<dependentAssembly dependencyType="install" codebase="Application Files\Disk Manager_0_1_4_0\Disk Manager.exe.manifest" size="7130">
<assemblyIdentity name="Disk Manager.exe" version="0.1.4.0" publicKeyToken="567a80808fa0355b" language="neutral" processorArchitecture="msil" type="win32" />
<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>SvzWRDIv/HiL2whkJVqymlMHdqgxUAeSqTfddSjAodo=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<publisherIdentity name="CN=MIKE-PC\micha" issuerKeyHash="5327ed277f65b50666bf74ec2cbd6e4588dac126" /><Signature Id="StrongNameSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>Lbs/qFIyZaozVVnjUpi90rI/LuMg8mJVe4w4yteB13Q=</DigestValue></Reference></SignedInfo><SignatureValue>zxJdds0sZJfe0pcraLi3hWabDgDv+yiXTFTtkNToVjM3i4Exof306Sh8EZv8BrEKkl2E7ZgS4OHkjbjEviIFuyY1XfH6Z9IOliIC7GDL4S8VVdjW3pXng/xEQoJxYZU4pU8sfdMXHDZrglT2sh/451yC6Ne/YGHznuPG/cULFz8=</SignatureValue><KeyInfo Id="StrongNameKeyInfo"><KeyValue><RSAKeyValue><Modulus>0A/YiMgkoW3Ek0vBsqvrrPXGL4ImfdcwMJgnHkmVkARt8bQeTBhMol4SglCH5M5xb79mDrexqxFkYJfE2SAadV07B+Sit5nc/OMERu8pCr806UqwnxteEg+JkpSrFciVkUuaOWJMN7eW6chX1bMCvxosopsdtA0PXxji/I3M/zE=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><msrel:RelData xmlns:msrel="http://schemas.microsoft.com/windows/rel/2005/reldata"><r:license xmlns:r="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:as="http://schemas.microsoft.com/windows/pki/2005/Authenticode"><r:grant><as:ManifestInformation Hash="74d781d7ca388c7b5562f220e32e3fb2d2bd9852e3595533aa653252a83fbb2d" Description="" Url=""><as:assemblyIdentity name="Disk Manager.application" version="0.1.4.0" publicKeyToken="567a80808fa0355b" language="neutral" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" /></as:ManifestInformation><as:SignedBy /><as:AuthenticodePublisher><as:X509SubjectName>CN=MIKE-PC\micha</as:X509SubjectName></as:AuthenticodePublisher></r:grant><r:issuer><Signature Id="AuthenticodeSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>6yk1UxmlsWOHXgjbFOp2FRbEC73DUN9Qs/dh+k02CjA=</DigestValue></Reference></SignedInfo><SignatureValue>bEYQGEXfQCTozGKL5/bsXwfGfPGpNqWdCnhzpFOXnj1mRsBDkyzgIHRy91nMydVHa4NuC3ywvpqq9NacnXH5K4GzJSXuSmAVkZPZnMHj0Zh0g9zYrMBjR80Imt1E8nAFWv6ysERUplqsc4YmcZy1J4QcZ18tSE8h0jaxaQ99FlQ=</SignatureValue><KeyInfo><KeyValue><RSAKeyValue><Modulus>0A/YiMgkoW3Ek0vBsqvrrPXGL4ImfdcwMJgnHkmVkARt8bQeTBhMol4SglCH5M5xb79mDrexqxFkYJfE2SAadV07B+Sit5nc/OMERu8pCr806UqwnxteEg+JkpSrFciVkUuaOWJMN7eW6chX1bMCvxosopsdtA0PXxji/I3M/zE=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><X509Data><X509Certificate>MIIBzTCCATagAwIBAgIQEmGCKGTfRKVEFb6U0NQ8GDANBgkqhkiG9w0BAQsFADAlMSMwIQYDVQQDHhoATQBJAEsARQAtAFAAQwBcAG0AaQBjAGgAYTAeFw0xODA1MDgyMDM0NDdaFw0xOTA1MDkwMjM0NDdaMCUxIzAhBgNVBAMeGgBNAEkASwBFAC0AUABDAFwAbQBpAGMAaABhMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDQD9iIyCShbcSTS8Gyq+us9cYvgiZ91zAwmCceSZWQBG3xtB5MGEyiXhKCUIfkznFvv2YOt7GrEWRgl8TZIBp1XTsH5KK3mdz84wRG7ykKvzTpSrCfG14SD4mSlKsVyJWRS5o5Ykw3t5bpyFfVswK/Giyimx20DQ9fGOL8jcz/MQIDAQABMA0GCSqGSIb3DQEBCwUAA4GBACOGzGIJZVChmMAma5kfwvg6am5sbd7IabI5/gJVfK3SkEp1l21n6hPMIuo4Ihh1kL7fgQ1kRvVKSFqaWUtTvi4j9ZtZxQtgmlQaRVz4GmUT+lNvdawD5n3P3/0dwOntv/KZZFiUo9prbZkQVlKu749BbGJj5BWVtS/ZVoyZqc3F</X509Certificate></X509Data></KeyInfo></Signature></r:issuer></r:license></msrel:RelData></KeyInfo></Signature></asmv1:assembly>

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="Disk_Manager.My.MySettings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
</sectionGroup>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
<userSettings>
<Disk_Manager.My.MySettings>
<setting name="POWER_IP" serializeAs="String">
<value>192.168.0.200</value>
</setting>
<setting name="OS_IP" serializeAs="String">
<value>192.168.0.17</value>
</setting>
</Disk_Manager.My.MySettings>
</userSettings>
</configuration>

View File

@@ -0,0 +1,65 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<asmv1:assemblyIdentity name="Disk Manager.exe" version="0.1.4.0" publicKeyToken="567a80808fa0355b" language="neutral" processorArchitecture="msil" type="win32" />
<application />
<entryPoint>
<assemblyIdentity name="Disk Manager" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<commandLine file="Disk Manager.exe" parameters="" />
</entryPoint>
<trustInfo>
<security>
<applicationRequestMinimum>
<PermissionSet Unrestricted="true" ID="Custom" SameSite="site" />
<defaultAssemblyRequest permissionSetReference="Custom" />
</applicationRequestMinimum>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<!--
UAC Manifest Options
If you want to change the Windows User Account Control level replace the
requestedExecutionLevel node with one of the following.
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
<requestedExecutionLevel level="highestAvailable" uiAccess="false" />
If you want to utilize File and Registry Virtualization for backward
compatibility then delete the requestedExecutionLevel node.
-->
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
</requestedPrivileges>
</security>
</trustInfo>
<dependency>
<dependentOS>
<osVersionInfo>
<os majorVersion="5" minorVersion="1" buildNumber="2600" servicePackMajor="0" />
</osVersionInfo>
</dependentOS>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="Microsoft.Windows.CommonLanguageRuntime" version="4.0.30319.0" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="Disk Manager.exe" size="25008">
<assemblyIdentity name="Disk Manager" version="1.0.0.0" 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>KJEBMiEQ7PFdTHxeXTKuwQnsFbP2V4Ng+V52ifPa8jM=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<file name="Disk Manager.exe.config" size="1048">
<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>c/6vlTshT+90JT8TpzR0vyrIsAHlOWYtmmZke0wFGaY=</dsig:DigestValue>
</hash>
</file>
<publisherIdentity name="CN=MIKE-PC\micha" issuerKeyHash="5327ed277f65b50666bf74ec2cbd6e4588dac126" /><Signature Id="StrongNameSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>RcrUqLl01uVufz3U0I5fREiibd5wFJnBhmyqZdKuQ7Y=</DigestValue></Reference></SignedInfo><SignatureValue>ZSB4qF4q7RBKz3kPA/pKOSKbNv6nHJe/8wyEnj6NU6fUf/s97QLk+7BIekX+uFYCzQ7eiTExxnU0SOoQtp7YLhQhSd4ZP1rjxK/bxO4S1jW4TWLdM/qUGnqhjiPFFJ7UOAcyn/gxMbJ6OqXbeaQ37vByGkrTUVc5TJGj55GaEXI=</SignatureValue><KeyInfo Id="StrongNameKeyInfo"><KeyValue><RSAKeyValue><Modulus>0A/YiMgkoW3Ek0vBsqvrrPXGL4ImfdcwMJgnHkmVkARt8bQeTBhMol4SglCH5M5xb79mDrexqxFkYJfE2SAadV07B+Sit5nc/OMERu8pCr806UqwnxteEg+JkpSrFciVkUuaOWJMN7eW6chX1bMCvxosopsdtA0PXxji/I3M/zE=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><msrel:RelData xmlns:msrel="http://schemas.microsoft.com/windows/rel/2005/reldata"><r:license xmlns:r="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:as="http://schemas.microsoft.com/windows/pki/2005/Authenticode"><r:grant><as:ManifestInformation Hash="b643aed265aa6c86c1991470de6da248445f8ed0d43d7f6ee5d674b9a8d4ca45" Description="" Url=""><as:assemblyIdentity name="Disk Manager.exe" version="0.1.4.0" publicKeyToken="567a80808fa0355b" language="neutral" processorArchitecture="msil" type="win32" /></as:ManifestInformation><as:SignedBy /><as:AuthenticodePublisher><as:X509SubjectName>CN=MIKE-PC\micha</as:X509SubjectName></as:AuthenticodePublisher></r:grant><r:issuer><Signature Id="AuthenticodeSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>t1Vf7lXC3MfS6eubhjtBtTMxNPASILr6avVFrAupj+w=</DigestValue></Reference></SignedInfo><SignatureValue>qEF6CDjdsnYQn4XuLUDZnRz3KAtMQlVFyftpQl+/gfV+d8GLG2nGXY4bIrE8FpnX2XtuVb9WyNa34tzpjJK+2IG3aLKmLshQfAI4+L6kzewYeeEAVixSY6MRX1VUSshgfy/aPiNkIqNEInoh8jS2gHfBOOUV4DZA4W5o4zUdAjk=</SignatureValue><KeyInfo><KeyValue><RSAKeyValue><Modulus>0A/YiMgkoW3Ek0vBsqvrrPXGL4ImfdcwMJgnHkmVkARt8bQeTBhMol4SglCH5M5xb79mDrexqxFkYJfE2SAadV07B+Sit5nc/OMERu8pCr806UqwnxteEg+JkpSrFciVkUuaOWJMN7eW6chX1bMCvxosopsdtA0PXxji/I3M/zE=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><X509Data><X509Certificate>MIIBzTCCATagAwIBAgIQEmGCKGTfRKVEFb6U0NQ8GDANBgkqhkiG9w0BAQsFADAlMSMwIQYDVQQDHhoATQBJAEsARQAtAFAAQwBcAG0AaQBjAGgAYTAeFw0xODA1MDgyMDM0NDdaFw0xOTA1MDkwMjM0NDdaMCUxIzAhBgNVBAMeGgBNAEkASwBFAC0AUABDAFwAbQBpAGMAaABhMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDQD9iIyCShbcSTS8Gyq+us9cYvgiZ91zAwmCceSZWQBG3xtB5MGEyiXhKCUIfkznFvv2YOt7GrEWRgl8TZIBp1XTsH5KK3mdz84wRG7ykKvzTpSrCfG14SD4mSlKsVyJWRS5o5Ykw3t5bpyFfVswK/Giyimx20DQ9fGOL8jcz/MQIDAQABMA0GCSqGSIb3DQEBCwUAA4GBACOGzGIJZVChmMAma5kfwvg6am5sbd7IabI5/gJVfK3SkEp1l21n6hPMIuo4Ihh1kL7fgQ1kRvVKSFqaWUtTvi4j9ZtZxQtgmlQaRVz4GmUT+lNvdawD5n3P3/0dwOntv/KZZFiUo9prbZkQVlKu749BbGJj5BWVtS/ZVoyZqc3F</X509Certificate></X509Data></KeyInfo></Signature></r:issuer></r:license></msrel:RelData></KeyInfo></Signature></asmv1:assembly>

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<assemblyIdentity name="Disk Manager.application" version="0.2.5.0" publicKeyToken="567a80808fa0355b" language="neutral" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" />
<description asmv2:publisher="Disk Manager" asmv2:product="Disk Manager" xmlns="urn:schemas-microsoft-com:asm.v1" />
<deployment install="true" mapFileExtensions="true" />
<compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2">
<framework targetVersion="4.5.2" profile="Full" supportedRuntime="4.0.30319" />
</compatibleFrameworks>
<dependency>
<dependentAssembly dependencyType="install" codebase="Application Files\Disk Manager_0_2_5_0\Disk Manager.exe.manifest" size="7130">
<assemblyIdentity name="Disk Manager.exe" version="0.2.5.0" publicKeyToken="567a80808fa0355b" language="neutral" processorArchitecture="msil" type="win32" />
<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>w/uzATQfeBwc6FFBqq4vcaw5bXpKDlUcpA3wGp84Wgs=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<publisherIdentity name="CN=MIKE-PC\micha" issuerKeyHash="5327ed277f65b50666bf74ec2cbd6e4588dac126" /><Signature Id="StrongNameSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>IJFMno/Qcsg8Jbjx6ByWqcf/nZfQdK0XmXZG9ehGuFo=</DigestValue></Reference></SignedInfo><SignatureValue>SIhROtQ0nr4qnxHsfjf7kiAiV+AmYT5tLx2p7qG7tVZyXlJRfDtpe7W0l3Y/6y0v6R3Hrfm7lVRZnlperuJbyejFS5pXXdYkzQ06sDg62EA0Nv+v05moOv70SB+yHDZKFLZA0lbbTvVICLBwYWYyIJX6KHo/IsgV0h7WBktbQw8=</SignatureValue><KeyInfo Id="StrongNameKeyInfo"><KeyValue><RSAKeyValue><Modulus>0A/YiMgkoW3Ek0vBsqvrrPXGL4ImfdcwMJgnHkmVkARt8bQeTBhMol4SglCH5M5xb79mDrexqxFkYJfE2SAadV07B+Sit5nc/OMERu8pCr806UqwnxteEg+JkpSrFciVkUuaOWJMN7eW6chX1bMCvxosopsdtA0PXxji/I3M/zE=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><msrel:RelData xmlns:msrel="http://schemas.microsoft.com/windows/rel/2005/reldata"><r:license xmlns:r="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:as="http://schemas.microsoft.com/windows/pki/2005/Authenticode"><r:grant><as:ManifestInformation Hash="5ab846e8f546769917ad74d0979dffc7a9961ce8f1b8253cc872d08f9e4c9120" Description="" Url=""><as:assemblyIdentity name="Disk Manager.application" version="0.2.5.0" publicKeyToken="567a80808fa0355b" language="neutral" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" /></as:ManifestInformation><as:SignedBy /><as:AuthenticodePublisher><as:X509SubjectName>CN=MIKE-PC\micha</as:X509SubjectName></as:AuthenticodePublisher></r:grant><r:issuer><Signature Id="AuthenticodeSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>vYG2v6vZz27TS2CZwoiAK2Jcp8YMlamaFVa+YHWQJKE=</DigestValue></Reference></SignedInfo><SignatureValue>zvKNzeaGiesIJ+jopyzckuFOb6/+l5NA8w4gmfWjt+tRvrv9sMrm4vpXwpNEp37so5ildCytJNy8SkU71dTIbo1RFJn+kxc65TljCTF2bZos9KWawp6zPEFpBmpVc/klV+DEMcWtKklyR/HJk9GiLgDJTdzIClOLK/NRfugAnHY=</SignatureValue><KeyInfo><KeyValue><RSAKeyValue><Modulus>0A/YiMgkoW3Ek0vBsqvrrPXGL4ImfdcwMJgnHkmVkARt8bQeTBhMol4SglCH5M5xb79mDrexqxFkYJfE2SAadV07B+Sit5nc/OMERu8pCr806UqwnxteEg+JkpSrFciVkUuaOWJMN7eW6chX1bMCvxosopsdtA0PXxji/I3M/zE=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><X509Data><X509Certificate>MIIBzTCCATagAwIBAgIQEmGCKGTfRKVEFb6U0NQ8GDANBgkqhkiG9w0BAQsFADAlMSMwIQYDVQQDHhoATQBJAEsARQAtAFAAQwBcAG0AaQBjAGgAYTAeFw0xODA1MDgyMDM0NDdaFw0xOTA1MDkwMjM0NDdaMCUxIzAhBgNVBAMeGgBNAEkASwBFAC0AUABDAFwAbQBpAGMAaABhMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDQD9iIyCShbcSTS8Gyq+us9cYvgiZ91zAwmCceSZWQBG3xtB5MGEyiXhKCUIfkznFvv2YOt7GrEWRgl8TZIBp1XTsH5KK3mdz84wRG7ykKvzTpSrCfG14SD4mSlKsVyJWRS5o5Ykw3t5bpyFfVswK/Giyimx20DQ9fGOL8jcz/MQIDAQABMA0GCSqGSIb3DQEBCwUAA4GBACOGzGIJZVChmMAma5kfwvg6am5sbd7IabI5/gJVfK3SkEp1l21n6hPMIuo4Ihh1kL7fgQ1kRvVKSFqaWUtTvi4j9ZtZxQtgmlQaRVz4GmUT+lNvdawD5n3P3/0dwOntv/KZZFiUo9prbZkQVlKu749BbGJj5BWVtS/ZVoyZqc3F</X509Certificate></X509Data></KeyInfo></Signature></r:issuer></r:license></msrel:RelData></KeyInfo></Signature></asmv1:assembly>

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="Disk_Manager.My.MySettings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
</sectionGroup>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
<userSettings>
<Disk_Manager.My.MySettings>
<setting name="POWER_IP" serializeAs="String">
<value>192.168.0.200</value>
</setting>
<setting name="OS_IP" serializeAs="String">
<value>192.168.0.17</value>
</setting>
</Disk_Manager.My.MySettings>
</userSettings>
</configuration>

View File

@@ -0,0 +1,65 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<asmv1:assemblyIdentity name="Disk Manager.exe" version="0.2.5.0" publicKeyToken="567a80808fa0355b" language="neutral" processorArchitecture="msil" type="win32" />
<application />
<entryPoint>
<assemblyIdentity name="Disk Manager" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<commandLine file="Disk Manager.exe" parameters="" />
</entryPoint>
<trustInfo>
<security>
<applicationRequestMinimum>
<PermissionSet Unrestricted="true" ID="Custom" SameSite="site" />
<defaultAssemblyRequest permissionSetReference="Custom" />
</applicationRequestMinimum>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<!--
UAC Manifest Options
If you want to change the Windows User Account Control level replace the
requestedExecutionLevel node with one of the following.
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
<requestedExecutionLevel level="highestAvailable" uiAccess="false" />
If you want to utilize File and Registry Virtualization for backward
compatibility then delete the requestedExecutionLevel node.
-->
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
</requestedPrivileges>
</security>
</trustInfo>
<dependency>
<dependentOS>
<osVersionInfo>
<os majorVersion="5" minorVersion="1" buildNumber="2600" servicePackMajor="0" />
</osVersionInfo>
</dependentOS>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="Microsoft.Windows.CommonLanguageRuntime" version="4.0.30319.0" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="Disk Manager.exe" size="25008">
<assemblyIdentity name="Disk Manager" version="1.0.0.0" 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>lP6enNYNDVZwGrdY+Z9H/mlq9/eqoXGwY+KA2qUQhnE=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<file name="Disk Manager.exe.config" size="1048">
<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>c/6vlTshT+90JT8TpzR0vyrIsAHlOWYtmmZke0wFGaY=</dsig:DigestValue>
</hash>
</file>
<publisherIdentity name="CN=MIKE-PC\micha" issuerKeyHash="5327ed277f65b50666bf74ec2cbd6e4588dac126" /><Signature Id="StrongNameSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>+imN6zT7aGfJtxdnpI6Jc/SgT+gCw5/7K6IJObHGlwI=</DigestValue></Reference></SignedInfo><SignatureValue>f58HWYINuI5z44y2NiNLrhVhX0twg1TeBLTzitZXe/b2Truprx79NiT/WhUZfqoHsSE3CFC80kdpxn7yRbt7RsrtWGIaJfPmWBv82NK07yL6rDKy9IUt0ylmj0Gg7c+Zs4+t6A09cdyUpXNkDs/wcYF67eIT55ih2XOHlXxtI4Q=</SignatureValue><KeyInfo Id="StrongNameKeyInfo"><KeyValue><RSAKeyValue><Modulus>0A/YiMgkoW3Ek0vBsqvrrPXGL4ImfdcwMJgnHkmVkARt8bQeTBhMol4SglCH5M5xb79mDrexqxFkYJfE2SAadV07B+Sit5nc/OMERu8pCr806UqwnxteEg+JkpSrFciVkUuaOWJMN7eW6chX1bMCvxosopsdtA0PXxji/I3M/zE=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><msrel:RelData xmlns:msrel="http://schemas.microsoft.com/windows/rel/2005/reldata"><r:license xmlns:r="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:as="http://schemas.microsoft.com/windows/pki/2005/Authenticode"><r:grant><as:ManifestInformation Hash="0297c6b13909a22bfb9fc302e84fa0f473898ea46717b7c96768fb34eb8d29fa" Description="" Url=""><as:assemblyIdentity name="Disk Manager.exe" version="0.2.5.0" publicKeyToken="567a80808fa0355b" language="neutral" processorArchitecture="msil" type="win32" /></as:ManifestInformation><as:SignedBy /><as:AuthenticodePublisher><as:X509SubjectName>CN=MIKE-PC\micha</as:X509SubjectName></as:AuthenticodePublisher></r:grant><r:issuer><Signature Id="AuthenticodeSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>eV7wateqv/lAn7GVjNRxl19GfhV4EZQWR8sgIVOfPUw=</DigestValue></Reference></SignedInfo><SignatureValue>HMctUtyQdJ4EH2CjSefQ6n36/57e38hkPgtJs0WzZ/lm42YBWHV3f4enYglmMZaYlTAezOeugPrwnLecVJoEgTLUlPqUzSJfSr5GYvPxDJhIe2zZoqbk7Qt8WBj/q5wzIVkQwB+BJ0D1j6OkJPGk+fk6bTY0APns+gVmMs4sG5Y=</SignatureValue><KeyInfo><KeyValue><RSAKeyValue><Modulus>0A/YiMgkoW3Ek0vBsqvrrPXGL4ImfdcwMJgnHkmVkARt8bQeTBhMol4SglCH5M5xb79mDrexqxFkYJfE2SAadV07B+Sit5nc/OMERu8pCr806UqwnxteEg+JkpSrFciVkUuaOWJMN7eW6chX1bMCvxosopsdtA0PXxji/I3M/zE=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><X509Data><X509Certificate>MIIBzTCCATagAwIBAgIQEmGCKGTfRKVEFb6U0NQ8GDANBgkqhkiG9w0BAQsFADAlMSMwIQYDVQQDHhoATQBJAEsARQAtAFAAQwBcAG0AaQBjAGgAYTAeFw0xODA1MDgyMDM0NDdaFw0xOTA1MDkwMjM0NDdaMCUxIzAhBgNVBAMeGgBNAEkASwBFAC0AUABDAFwAbQBpAGMAaABhMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDQD9iIyCShbcSTS8Gyq+us9cYvgiZ91zAwmCceSZWQBG3xtB5MGEyiXhKCUIfkznFvv2YOt7GrEWRgl8TZIBp1XTsH5KK3mdz84wRG7ykKvzTpSrCfG14SD4mSlKsVyJWRS5o5Ykw3t5bpyFfVswK/Giyimx20DQ9fGOL8jcz/MQIDAQABMA0GCSqGSIb3DQEBCwUAA4GBACOGzGIJZVChmMAma5kfwvg6am5sbd7IabI5/gJVfK3SkEp1l21n6hPMIuo4Ihh1kL7fgQ1kRvVKSFqaWUtTvi4j9ZtZxQtgmlQaRVz4GmUT+lNvdawD5n3P3/0dwOntv/KZZFiUo9prbZkQVlKu749BbGJj5BWVtS/ZVoyZqc3F</X509Certificate></X509Data></KeyInfo></Signature></r:issuer></r:license></msrel:RelData></KeyInfo></Signature></asmv1:assembly>

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<assemblyIdentity name="Disk Manager.application" version="0.3.6.0" publicKeyToken="567a80808fa0355b" language="neutral" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" />
<description asmv2:publisher="Disk Manager" asmv2:product="Disk Manager" xmlns="urn:schemas-microsoft-com:asm.v1" />
<deployment install="true" mapFileExtensions="true" />
<compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2">
<framework targetVersion="4.5.2" profile="Full" supportedRuntime="4.0.30319" />
</compatibleFrameworks>
<dependency>
<dependentAssembly dependencyType="install" codebase="Application Files\Disk Manager_0_3_6_0\Disk Manager.exe.manifest" size="7130">
<assemblyIdentity name="Disk Manager.exe" version="0.3.6.0" publicKeyToken="567a80808fa0355b" language="neutral" processorArchitecture="msil" type="win32" />
<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>eTZigHkUn5vU1BYTDtwlbAB9obSmql7kixtN/pMdngs=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<publisherIdentity name="CN=MIKE-PC\micha" issuerKeyHash="5327ed277f65b50666bf74ec2cbd6e4588dac126" /><Signature Id="StrongNameSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>jPccQKPLMH/VqoeoiQGPvjwHE8bWMG2cCjieBj8wpK0=</DigestValue></Reference></SignedInfo><SignatureValue>gRdXtvOFjdray7hS+JCTg1j/WzjjSpbEDu0kcwe+6/Yw3vLK006uCsK9DDlBwFuDHkxxsZj7HuRTJHmIRf3GYKkfIazpC9NxYvbRCfTNog6Jgg7YU5XWk3DM4MgitazUGj8FdtK25TbFvxhGawf76U00m+cVSVe0FOpJuwHTMaY=</SignatureValue><KeyInfo Id="StrongNameKeyInfo"><KeyValue><RSAKeyValue><Modulus>0A/YiMgkoW3Ek0vBsqvrrPXGL4ImfdcwMJgnHkmVkARt8bQeTBhMol4SglCH5M5xb79mDrexqxFkYJfE2SAadV07B+Sit5nc/OMERu8pCr806UqwnxteEg+JkpSrFciVkUuaOWJMN7eW6chX1bMCvxosopsdtA0PXxji/I3M/zE=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><msrel:RelData xmlns:msrel="http://schemas.microsoft.com/windows/rel/2005/reldata"><r:license xmlns:r="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:as="http://schemas.microsoft.com/windows/pki/2005/Authenticode"><r:grant><as:ManifestInformation Hash="ada4303f069e380a9c6d30d6c613073cbe8f0189a887aad57f30cba3401cf78c" Description="" Url=""><as:assemblyIdentity name="Disk Manager.application" version="0.3.6.0" publicKeyToken="567a80808fa0355b" language="neutral" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" /></as:ManifestInformation><as:SignedBy /><as:AuthenticodePublisher><as:X509SubjectName>CN=MIKE-PC\micha</as:X509SubjectName></as:AuthenticodePublisher></r:grant><r:issuer><Signature Id="AuthenticodeSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>/SDpTBljCcp159xIxNK2ddSEtRT7jmtsHUDotP3859U=</DigestValue></Reference></SignedInfo><SignatureValue>h8klAvRzEdkJblDOllTdIlcPfH7vAkmEl5ftiT/5yKzhSRQ0toEzkiSYuOYSGYRi/E/qgsIbG6niDwQ9WeRwpm7r1azp0zOVDJtnGV9rT+ELJBU+BRt/RZCynlKcnFjcWV4Wl4qWYvFOsxLLpGU1OoHSqrQ0ss773k8v6ZJTYYk=</SignatureValue><KeyInfo><KeyValue><RSAKeyValue><Modulus>0A/YiMgkoW3Ek0vBsqvrrPXGL4ImfdcwMJgnHkmVkARt8bQeTBhMol4SglCH5M5xb79mDrexqxFkYJfE2SAadV07B+Sit5nc/OMERu8pCr806UqwnxteEg+JkpSrFciVkUuaOWJMN7eW6chX1bMCvxosopsdtA0PXxji/I3M/zE=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><X509Data><X509Certificate>MIIBzTCCATagAwIBAgIQEmGCKGTfRKVEFb6U0NQ8GDANBgkqhkiG9w0BAQsFADAlMSMwIQYDVQQDHhoATQBJAEsARQAtAFAAQwBcAG0AaQBjAGgAYTAeFw0xODA1MDgyMDM0NDdaFw0xOTA1MDkwMjM0NDdaMCUxIzAhBgNVBAMeGgBNAEkASwBFAC0AUABDAFwAbQBpAGMAaABhMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDQD9iIyCShbcSTS8Gyq+us9cYvgiZ91zAwmCceSZWQBG3xtB5MGEyiXhKCUIfkznFvv2YOt7GrEWRgl8TZIBp1XTsH5KK3mdz84wRG7ykKvzTpSrCfG14SD4mSlKsVyJWRS5o5Ykw3t5bpyFfVswK/Giyimx20DQ9fGOL8jcz/MQIDAQABMA0GCSqGSIb3DQEBCwUAA4GBACOGzGIJZVChmMAma5kfwvg6am5sbd7IabI5/gJVfK3SkEp1l21n6hPMIuo4Ihh1kL7fgQ1kRvVKSFqaWUtTvi4j9ZtZxQtgmlQaRVz4GmUT+lNvdawD5n3P3/0dwOntv/KZZFiUo9prbZkQVlKu749BbGJj5BWVtS/ZVoyZqc3F</X509Certificate></X509Data></KeyInfo></Signature></r:issuer></r:license></msrel:RelData></KeyInfo></Signature></asmv1:assembly>

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="Disk_Manager.My.MySettings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
</sectionGroup>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
<userSettings>
<Disk_Manager.My.MySettings>
<setting name="POWER_IP" serializeAs="String">
<value>192.168.0.200</value>
</setting>
<setting name="OS_IP" serializeAs="String">
<value>192.168.0.17</value>
</setting>
</Disk_Manager.My.MySettings>
</userSettings>
</configuration>

View File

@@ -0,0 +1,65 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<asmv1:assemblyIdentity name="Disk Manager.exe" version="0.3.6.0" publicKeyToken="567a80808fa0355b" language="neutral" processorArchitecture="msil" type="win32" />
<application />
<entryPoint>
<assemblyIdentity name="Disk Manager" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<commandLine file="Disk Manager.exe" parameters="" />
</entryPoint>
<trustInfo>
<security>
<applicationRequestMinimum>
<PermissionSet Unrestricted="true" ID="Custom" SameSite="site" />
<defaultAssemblyRequest permissionSetReference="Custom" />
</applicationRequestMinimum>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<!--
UAC Manifest Options
If you want to change the Windows User Account Control level replace the
requestedExecutionLevel node with one of the following.
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
<requestedExecutionLevel level="highestAvailable" uiAccess="false" />
If you want to utilize File and Registry Virtualization for backward
compatibility then delete the requestedExecutionLevel node.
-->
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
</requestedPrivileges>
</security>
</trustInfo>
<dependency>
<dependentOS>
<osVersionInfo>
<os majorVersion="5" minorVersion="1" buildNumber="2600" servicePackMajor="0" />
</osVersionInfo>
</dependentOS>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="Microsoft.Windows.CommonLanguageRuntime" version="4.0.30319.0" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="Disk Manager.exe" size="25520">
<assemblyIdentity name="Disk Manager" version="1.0.0.0" 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>jIQMFUJOsZtdNk34RRJpCzRjikGcH2LH6Xfu3Y0FOXE=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<file name="Disk Manager.exe.config" size="1048">
<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>c/6vlTshT+90JT8TpzR0vyrIsAHlOWYtmmZke0wFGaY=</dsig:DigestValue>
</hash>
</file>
<publisherIdentity name="CN=MIKE-PC\micha" issuerKeyHash="5327ed277f65b50666bf74ec2cbd6e4588dac126" /><Signature Id="StrongNameSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>kcJR5Pl3AXdKNJhZParNgFaN2RmqC4RBeom4v8upJ6Q=</DigestValue></Reference></SignedInfo><SignatureValue>GM5UcUIjhRvuCpOD6Yoy96pR4ACQvnJuuEO3v9Pw+tcH7jg+zGUwYrCjJft3VeO6gWxaTrcZyFmQN+Da9rLLF/yZlbEwPUtQHLzMoVJhasBpqwywSarY0PJX/zrsWvZrVmTVhzYkHjmQ9JocZGjrRe9P+N06c6s4LsJ6XXKVsH8=</SignatureValue><KeyInfo Id="StrongNameKeyInfo"><KeyValue><RSAKeyValue><Modulus>0A/YiMgkoW3Ek0vBsqvrrPXGL4ImfdcwMJgnHkmVkARt8bQeTBhMol4SglCH5M5xb79mDrexqxFkYJfE2SAadV07B+Sit5nc/OMERu8pCr806UqwnxteEg+JkpSrFciVkUuaOWJMN7eW6chX1bMCvxosopsdtA0PXxji/I3M/zE=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><msrel:RelData xmlns:msrel="http://schemas.microsoft.com/windows/rel/2005/reldata"><r:license xmlns:r="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:as="http://schemas.microsoft.com/windows/pki/2005/Authenticode"><r:grant><as:ManifestInformation Hash="a427a9cbbfb8897a41840baa19d98d5680cdaa3d5998344a770177f9e451c291" Description="" Url=""><as:assemblyIdentity name="Disk Manager.exe" version="0.3.6.0" publicKeyToken="567a80808fa0355b" language="neutral" processorArchitecture="msil" type="win32" /></as:ManifestInformation><as:SignedBy /><as:AuthenticodePublisher><as:X509SubjectName>CN=MIKE-PC\micha</as:X509SubjectName></as:AuthenticodePublisher></r:grant><r:issuer><Signature Id="AuthenticodeSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>Bj8xaK5kmPL3n7Je6ysqfB3idLRql6LxXgxYYlumg0A=</DigestValue></Reference></SignedInfo><SignatureValue>P7aD39gJjY8nqiBMpz0glgCJPDyKLJ5arO5cjB50Q6uyaGm+4tlP3Lo9ZDL79zhsw5ct1DaffeZiZQbjO+jO/DSbRwR9xLeLsXbwPJ64PMf/2fgpHS7G3/4/fv64SEVc4fEd8D0fXAh0WdJWoXCogNgBxGeiB6lhYESvmf+WNFE=</SignatureValue><KeyInfo><KeyValue><RSAKeyValue><Modulus>0A/YiMgkoW3Ek0vBsqvrrPXGL4ImfdcwMJgnHkmVkARt8bQeTBhMol4SglCH5M5xb79mDrexqxFkYJfE2SAadV07B+Sit5nc/OMERu8pCr806UqwnxteEg+JkpSrFciVkUuaOWJMN7eW6chX1bMCvxosopsdtA0PXxji/I3M/zE=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><X509Data><X509Certificate>MIIBzTCCATagAwIBAgIQEmGCKGTfRKVEFb6U0NQ8GDANBgkqhkiG9w0BAQsFADAlMSMwIQYDVQQDHhoATQBJAEsARQAtAFAAQwBcAG0AaQBjAGgAYTAeFw0xODA1MDgyMDM0NDdaFw0xOTA1MDkwMjM0NDdaMCUxIzAhBgNVBAMeGgBNAEkASwBFAC0AUABDAFwAbQBpAGMAaABhMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDQD9iIyCShbcSTS8Gyq+us9cYvgiZ91zAwmCceSZWQBG3xtB5MGEyiXhKCUIfkznFvv2YOt7GrEWRgl8TZIBp1XTsH5KK3mdz84wRG7ykKvzTpSrCfG14SD4mSlKsVyJWRS5o5Ykw3t5bpyFfVswK/Giyimx20DQ9fGOL8jcz/MQIDAQABMA0GCSqGSIb3DQEBCwUAA4GBACOGzGIJZVChmMAma5kfwvg6am5sbd7IabI5/gJVfK3SkEp1l21n6hPMIuo4Ihh1kL7fgQ1kRvVKSFqaWUtTvi4j9ZtZxQtgmlQaRVz4GmUT+lNvdawD5n3P3/0dwOntv/KZZFiUo9prbZkQVlKu749BbGJj5BWVtS/ZVoyZqc3F</X509Certificate></X509Data></KeyInfo></Signature></r:issuer></r:license></msrel:RelData></KeyInfo></Signature></asmv1:assembly>

View File

@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<assemblyIdentity name="Disk Manager.application" version="0.4.7.0" publicKeyToken="567a80808fa0355b" language="en-US" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" />
<description asmv2:publisher="Michał Czyż" asmv2:product="Disk Manager" xmlns="urn:schemas-microsoft-com:asm.v1" />
<deployment install="true" mapFileExtensions="true" minimumRequiredVersion="0.4.7.0" co.v1:createDesktopShortcut="true">
<subscription>
<update>
<expiration maximumAge="0" unit="days" />
</update>
</subscription>
<deploymentProvider codebase="file://mike-pc/App/publish/Disk%20Manager.application" />
</deployment>
<compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2">
<framework targetVersion="4.5.2" profile="Full" supportedRuntime="4.0.30319" />
</compatibleFrameworks>
<dependency>
<dependentAssembly dependencyType="install" codebase="Application Files\Disk Manager_0_4_7_0\Disk Manager.exe.manifest" size="8569">
<assemblyIdentity name="Disk Manager.exe" version="0.4.7.0" publicKeyToken="567a80808fa0355b" language="en-US" processorArchitecture="msil" type="win32" />
<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>Nf9/ET9kWshbheKWiQVHulU49wvF7ni8iebyz9Ueq3g=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<publisherIdentity name="CN=MIKE-PC\micha" issuerKeyHash="5327ed277f65b50666bf74ec2cbd6e4588dac126" /><Signature Id="StrongNameSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>sqgfqvjgND2vCxDULV8bN/N2Y1RC4T3W1nNmLIoVWcs=</DigestValue></Reference></SignedInfo><SignatureValue>WvSkST56OGwlR2DygTiAA7/PJgreLi4gSgiapDs2E0Sz64kWE5FkYLIQO19u/Y5Q4BEL9evy71LZ73IJrdOpdnwH6kqFpJKLo7pn83LCrSeFZpT4y/f3nwbCbZOod8DXtifOJwQ5BTtNQFQNWac4k/hmC8z8DC4tC68GAZoc9KQ=</SignatureValue><KeyInfo Id="StrongNameKeyInfo"><KeyValue><RSAKeyValue><Modulus>0A/YiMgkoW3Ek0vBsqvrrPXGL4ImfdcwMJgnHkmVkARt8bQeTBhMol4SglCH5M5xb79mDrexqxFkYJfE2SAadV07B+Sit5nc/OMERu8pCr806UqwnxteEg+JkpSrFciVkUuaOWJMN7eW6chX1bMCvxosopsdtA0PXxji/I3M/zE=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><msrel:RelData xmlns:msrel="http://schemas.microsoft.com/windows/rel/2005/reldata"><r:license xmlns:r="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:as="http://schemas.microsoft.com/windows/pki/2005/Authenticode"><r:grant><as:ManifestInformation Hash="cb59158a2c6673d6d63de142546376f3371b5f2dd4100baf3d34e0f8aa1fa8b2" Description="" Url=""><as:assemblyIdentity name="Disk Manager.application" version="0.4.7.0" publicKeyToken="567a80808fa0355b" language="en-US" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" /></as:ManifestInformation><as:SignedBy /><as:AuthenticodePublisher><as:X509SubjectName>CN=MIKE-PC\micha</as:X509SubjectName></as:AuthenticodePublisher></r:grant><r:issuer><Signature Id="AuthenticodeSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>4xj8vOW7ls9GiwlIG7aDupJYvmMCiEipRfM9dn05Juk=</DigestValue></Reference></SignedInfo><SignatureValue>GRBguPisthnKLDPIRqwkpq+8h/YIy3twW7/tYa4d/0GPIIsWD8avbw489CklJgsvnhmbiItrAMV0Q0vXV1OfxR/khpSYKPHU+f/HVyACY2e0+yNZhzYy4Y6sTpPopofVOtSIpYbOKtYgnNL+mWHc/loqA2WBdPkh4nogY1+kcoM=</SignatureValue><KeyInfo><KeyValue><RSAKeyValue><Modulus>0A/YiMgkoW3Ek0vBsqvrrPXGL4ImfdcwMJgnHkmVkARt8bQeTBhMol4SglCH5M5xb79mDrexqxFkYJfE2SAadV07B+Sit5nc/OMERu8pCr806UqwnxteEg+JkpSrFciVkUuaOWJMN7eW6chX1bMCvxosopsdtA0PXxji/I3M/zE=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><X509Data><X509Certificate>MIIBzTCCATagAwIBAgIQEmGCKGTfRKVEFb6U0NQ8GDANBgkqhkiG9w0BAQsFADAlMSMwIQYDVQQDHhoATQBJAEsARQAtAFAAQwBcAG0AaQBjAGgAYTAeFw0xODA1MDgyMDM0NDdaFw0xOTA1MDkwMjM0NDdaMCUxIzAhBgNVBAMeGgBNAEkASwBFAC0AUABDAFwAbQBpAGMAaABhMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDQD9iIyCShbcSTS8Gyq+us9cYvgiZ91zAwmCceSZWQBG3xtB5MGEyiXhKCUIfkznFvv2YOt7GrEWRgl8TZIBp1XTsH5KK3mdz84wRG7ykKvzTpSrCfG14SD4mSlKsVyJWRS5o5Ykw3t5bpyFfVswK/Giyimx20DQ9fGOL8jcz/MQIDAQABMA0GCSqGSIb3DQEBCwUAA4GBACOGzGIJZVChmMAma5kfwvg6am5sbd7IabI5/gJVfK3SkEp1l21n6hPMIuo4Ihh1kL7fgQ1kRvVKSFqaWUtTvi4j9ZtZxQtgmlQaRVz4GmUT+lNvdawD5n3P3/0dwOntv/KZZFiUo9prbZkQVlKu749BbGJj5BWVtS/ZVoyZqc3F</X509Certificate></X509Data></KeyInfo></Signature></r:issuer></r:license></msrel:RelData></KeyInfo></Signature></asmv1:assembly>

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="Disk_Manager.My.MySettings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
</sectionGroup>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
<userSettings>
<Disk_Manager.My.MySettings>
<setting name="POWER_IP" serializeAs="String">
<value>192.168.0.200</value>
</setting>
<setting name="OS_IP" serializeAs="String">
<value>192.168.0.17</value>
</setting>
</Disk_Manager.My.MySettings>
</userSettings>
</configuration>

View File

@@ -0,0 +1,92 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<asmv1:assemblyIdentity name="Disk Manager.exe" version="0.4.7.0" publicKeyToken="567a80808fa0355b" language="en-US" processorArchitecture="msil" type="win32" />
<description asmv2:iconFile="if_network1_216674.ico" xmlns="urn:schemas-microsoft-com:asm.v1" />
<application />
<entryPoint>
<assemblyIdentity name="Disk Manager" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<commandLine file="Disk Manager.exe" parameters="" />
</entryPoint>
<trustInfo>
<security>
<applicationRequestMinimum>
<PermissionSet Unrestricted="true" ID="Custom" SameSite="site" />
<defaultAssemblyRequest permissionSetReference="Custom" />
</applicationRequestMinimum>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<!-- UAC Manifest Options
If you want to change the Windows User Account Control level replace the
requestedExecutionLevel node with one of the following.
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
<requestedExecutionLevel level="highestAvailable" uiAccess="false" />
Specifying requestedExecutionLevel element will disable file and registry virtualization.
Remove this element if your application requires this virtualization for backwards
compatibility.
-->
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
</requestedPrivileges>
</security>
</trustInfo>
<dependency>
<dependentOS>
<osVersionInfo>
<os majorVersion="5" minorVersion="1" buildNumber="2600" servicePackMajor="0" />
</osVersionInfo>
</dependentOS>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="Microsoft.Windows.CommonLanguageRuntime" version="4.0.30319.0" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="Disk Manager.exe" size="241072">
<assemblyIdentity name="Disk Manager" version="1.0.0.0" 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>7YyinWas097ifLn0cFqqkISM6e4Fqk91CNM58ZORZlc=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<file name="Disk Manager.exe.config" size="1048">
<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>c/6vlTshT+90JT8TpzR0vyrIsAHlOWYtmmZke0wFGaY=</dsig:DigestValue>
</hash>
</file>
<file name="if_network1_216674.ico" size="106802">
<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>nDs/J1vhb0HJ9OX4T+Y+XS6U02RrO9785rBE/lk+DSk=</dsig:DigestValue>
</hash>
</file>
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
<application>
<!-- A list of the Windows versions that this application has been tested on and is
is designed to work with. Uncomment the appropriate elements and Windows will
automatically selected the most compatible environment. -->
<!-- Windows Vista -->
<!--<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}" />-->
<!-- Windows 7 -->
<!--<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}" />-->
<!-- Windows 8 -->
<!--<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}" />-->
<!-- Windows 8.1 -->
<!--<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}" />-->
<!-- Windows 10 -->
<!--<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}" />-->
</application>
</compatibility>
<publisherIdentity name="CN=MIKE-PC\micha" issuerKeyHash="5327ed277f65b50666bf74ec2cbd6e4588dac126" /><Signature Id="StrongNameSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>2CNky49jZqhg/G1kpyyob4g+82Jjji4pNdT5gR/Jd6s=</DigestValue></Reference></SignedInfo><SignatureValue>w0gB1/jQXauvrzZDlWSTBe3vOSedtujb5P/g38E1kVgtgV/iy2qMf22APcV8Xicb3r3J6NI/nW0vPgwITUU8R2RE988e3rPHBuU9hOGs/3ikFHGIeD8n273Q+Rb8sDqSAOoOjFnVFWEk1CwrXbdPBfC+JxtBIgevhuYv3T/shss=</SignatureValue><KeyInfo Id="StrongNameKeyInfo"><KeyValue><RSAKeyValue><Modulus>0A/YiMgkoW3Ek0vBsqvrrPXGL4ImfdcwMJgnHkmVkARt8bQeTBhMol4SglCH5M5xb79mDrexqxFkYJfE2SAadV07B+Sit5nc/OMERu8pCr806UqwnxteEg+JkpSrFciVkUuaOWJMN7eW6chX1bMCvxosopsdtA0PXxji/I3M/zE=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><msrel:RelData xmlns:msrel="http://schemas.microsoft.com/windows/rel/2005/reldata"><r:license xmlns:r="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:as="http://schemas.microsoft.com/windows/pki/2005/Authenticode"><r:grant><as:ManifestInformation Hash="ab77c91f81f9d435292e8e6362f33e886fa82ca7646dfc60a866638fcb6423d8" Description="" Url=""><as:assemblyIdentity name="Disk Manager.exe" version="0.4.7.0" publicKeyToken="567a80808fa0355b" language="en-US" processorArchitecture="msil" type="win32" /></as:ManifestInformation><as:SignedBy /><as:AuthenticodePublisher><as:X509SubjectName>CN=MIKE-PC\micha</as:X509SubjectName></as:AuthenticodePublisher></r:grant><r:issuer><Signature Id="AuthenticodeSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>s+16iWQb0FV5q+jSyiojyZDEzK0CuMXZEeCgpk5wtlc=</DigestValue></Reference></SignedInfo><SignatureValue>mAhgzGN6DdjGetxc9V6OpiyKLseHY03lqB5J9f7p1FNlrkJCcsZ+RaRlP6B4znpvNJWy3YycbmUHtCGoi0u13Bgespu6T0kWAtCIj174FGpyrdZ0PNWx/+JkqQ1xYfgwDH+/Q4QrWCZcnbacacMwLcK+GDiMfvziEbcRoyoP6yU=</SignatureValue><KeyInfo><KeyValue><RSAKeyValue><Modulus>0A/YiMgkoW3Ek0vBsqvrrPXGL4ImfdcwMJgnHkmVkARt8bQeTBhMol4SglCH5M5xb79mDrexqxFkYJfE2SAadV07B+Sit5nc/OMERu8pCr806UqwnxteEg+JkpSrFciVkUuaOWJMN7eW6chX1bMCvxosopsdtA0PXxji/I3M/zE=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><X509Data><X509Certificate>MIIBzTCCATagAwIBAgIQEmGCKGTfRKVEFb6U0NQ8GDANBgkqhkiG9w0BAQsFADAlMSMwIQYDVQQDHhoATQBJAEsARQAtAFAAQwBcAG0AaQBjAGgAYTAeFw0xODA1MDgyMDM0NDdaFw0xOTA1MDkwMjM0NDdaMCUxIzAhBgNVBAMeGgBNAEkASwBFAC0AUABDAFwAbQBpAGMAaABhMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDQD9iIyCShbcSTS8Gyq+us9cYvgiZ91zAwmCceSZWQBG3xtB5MGEyiXhKCUIfkznFvv2YOt7GrEWRgl8TZIBp1XTsH5KK3mdz84wRG7ykKvzTpSrCfG14SD4mSlKsVyJWRS5o5Ykw3t5bpyFfVswK/Giyimx20DQ9fGOL8jcz/MQIDAQABMA0GCSqGSIb3DQEBCwUAA4GBACOGzGIJZVChmMAma5kfwvg6am5sbd7IabI5/gJVfK3SkEp1l21n6hPMIuo4Ihh1kL7fgQ1kRvVKSFqaWUtTvi4j9ZtZxQtgmlQaRVz4GmUT+lNvdawD5n3P3/0dwOntv/KZZFiUo9prbZkQVlKu749BbGJj5BWVtS/ZVoyZqc3F</X509Certificate></X509Data></KeyInfo></Signature></r:issuer></r:license></msrel:RelData></KeyInfo></Signature></asmv1:assembly>

Binary file not shown.

After

Width:  |  Height:  |  Size: 104 KiB

View File

@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<assemblyIdentity name="Disk Manager.application" version="0.4.8.0" publicKeyToken="567a80808fa0355b" language="en-US" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" />
<description asmv2:publisher="Michał Czyż" asmv2:product="Disk Manager" xmlns="urn:schemas-microsoft-com:asm.v1" />
<deployment install="true" mapFileExtensions="true" minimumRequiredVersion="0.4.7.0" co.v1:createDesktopShortcut="true">
<subscription>
<update>
<expiration maximumAge="0" unit="days" />
</update>
</subscription>
<deploymentProvider codebase="file://mike-pc/App/publish/Disk%20Manager.application" />
</deployment>
<compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2">
<framework targetVersion="4.5.2" profile="Full" supportedRuntime="4.0.30319" />
</compatibleFrameworks>
<dependency>
<dependentAssembly dependencyType="install" codebase="Application Files\Disk Manager_0_4_8_0\Disk Manager.exe.manifest" size="8980">
<assemblyIdentity name="Disk Manager.exe" version="0.4.8.0" publicKeyToken="567a80808fa0355b" language="en-US" processorArchitecture="msil" type="win32" />
<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>5g3XtyfzHERY0gHvcVU0yFFq4hKb0e0WYlnz94baVRk=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<publisherIdentity name="CN=MIKE-PC\micha" issuerKeyHash="5327ed277f65b50666bf74ec2cbd6e4588dac126" /><Signature Id="StrongNameSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>cTHkGxD3zsXlJjpq+2Y5hAEZXJmI2dB97wWr+wuhOns=</DigestValue></Reference></SignedInfo><SignatureValue>BECBhWHygIitmjk8bJnAePL72F82fJtNbHeKUv1c0sbdyOXn9JUv5w6sj6Ie0Ns8gTU2M7mqkEdMLhImKoI5dB0K/iyG/LeruZKXVJnx4C7Yt9pIlaK0yTQunbZKF+bpNFER0jSJ8b5AQUot27s5ynDgvDY60PkvJCCAzq3S2BQ=</SignatureValue><KeyInfo Id="StrongNameKeyInfo"><KeyValue><RSAKeyValue><Modulus>0A/YiMgkoW3Ek0vBsqvrrPXGL4ImfdcwMJgnHkmVkARt8bQeTBhMol4SglCH5M5xb79mDrexqxFkYJfE2SAadV07B+Sit5nc/OMERu8pCr806UqwnxteEg+JkpSrFciVkUuaOWJMN7eW6chX1bMCvxosopsdtA0PXxji/I3M/zE=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><msrel:RelData xmlns:msrel="http://schemas.microsoft.com/windows/rel/2005/reldata"><r:license xmlns:r="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:as="http://schemas.microsoft.com/windows/pki/2005/Authenticode"><r:grant><as:ManifestInformation Hash="7b3aa10bfbab05ef7dd0d988995c1901843966fb6a3a26e5c5cef7101be43171" Description="" Url=""><as:assemblyIdentity name="Disk Manager.application" version="0.4.8.0" publicKeyToken="567a80808fa0355b" language="en-US" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" /></as:ManifestInformation><as:SignedBy /><as:AuthenticodePublisher><as:X509SubjectName>CN=MIKE-PC\micha</as:X509SubjectName></as:AuthenticodePublisher></r:grant><r:issuer><Signature Id="AuthenticodeSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>MxqaQ0IO45jsSbk+8Cb4i7ysTOGPv2CUmaNXlxJP3+w=</DigestValue></Reference></SignedInfo><SignatureValue>xxZJFqfEvyIGl18Q6Fdl3D6Oqhfxv/IwpRgjoSRiUIp6ehfW28sosRdewMboe+Vchls3K7MCrbQc1qfIMUUDDfqEG9TyKPjDK2H0EFYfCpu/YEpmDCObjynutCKyIPOPUzuzT4qBexD3+cCgpXHZngVCbgyV7KhutrAGDc8tiiE=</SignatureValue><KeyInfo><KeyValue><RSAKeyValue><Modulus>0A/YiMgkoW3Ek0vBsqvrrPXGL4ImfdcwMJgnHkmVkARt8bQeTBhMol4SglCH5M5xb79mDrexqxFkYJfE2SAadV07B+Sit5nc/OMERu8pCr806UqwnxteEg+JkpSrFciVkUuaOWJMN7eW6chX1bMCvxosopsdtA0PXxji/I3M/zE=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><X509Data><X509Certificate>MIIBzTCCATagAwIBAgIQEmGCKGTfRKVEFb6U0NQ8GDANBgkqhkiG9w0BAQsFADAlMSMwIQYDVQQDHhoATQBJAEsARQAtAFAAQwBcAG0AaQBjAGgAYTAeFw0xODA1MDgyMDM0NDdaFw0xOTA1MDkwMjM0NDdaMCUxIzAhBgNVBAMeGgBNAEkASwBFAC0AUABDAFwAbQBpAGMAaABhMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDQD9iIyCShbcSTS8Gyq+us9cYvgiZ91zAwmCceSZWQBG3xtB5MGEyiXhKCUIfkznFvv2YOt7GrEWRgl8TZIBp1XTsH5KK3mdz84wRG7ykKvzTpSrCfG14SD4mSlKsVyJWRS5o5Ykw3t5bpyFfVswK/Giyimx20DQ9fGOL8jcz/MQIDAQABMA0GCSqGSIb3DQEBCwUAA4GBACOGzGIJZVChmMAma5kfwvg6am5sbd7IabI5/gJVfK3SkEp1l21n6hPMIuo4Ihh1kL7fgQ1kRvVKSFqaWUtTvi4j9ZtZxQtgmlQaRVz4GmUT+lNvdawD5n3P3/0dwOntv/KZZFiUo9prbZkQVlKu749BbGJj5BWVtS/ZVoyZqc3F</X509Certificate></X509Data></KeyInfo></Signature></r:issuer></r:license></msrel:RelData></KeyInfo></Signature></asmv1:assembly>

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="Disk_Manager.My.MySettings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
</sectionGroup>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
<userSettings>
<Disk_Manager.My.MySettings>
<setting name="POWER_IP" serializeAs="String">
<value>192.168.0.200</value>
</setting>
<setting name="OS_IP" serializeAs="String">
<value>192.168.0.17</value>
</setting>
</Disk_Manager.My.MySettings>
</userSettings>
</configuration>

View File

@@ -0,0 +1,101 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<asmv1:assemblyIdentity name="Disk Manager.exe" version="0.4.8.0" publicKeyToken="567a80808fa0355b" language="en-US" processorArchitecture="msil" type="win32" />
<description asmv2:iconFile="if_network-workgroup_118928.ico" xmlns="urn:schemas-microsoft-com:asm.v1" />
<application />
<entryPoint>
<assemblyIdentity name="Disk Manager" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<commandLine file="Disk Manager.exe" parameters="" />
</entryPoint>
<trustInfo>
<security>
<applicationRequestMinimum>
<PermissionSet Unrestricted="true" ID="Custom" SameSite="site" />
<defaultAssemblyRequest permissionSetReference="Custom" />
</applicationRequestMinimum>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<!-- UAC Manifest Options
If you want to change the Windows User Account Control level replace the
requestedExecutionLevel node with one of the following.
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
<requestedExecutionLevel level="highestAvailable" uiAccess="false" />
Specifying requestedExecutionLevel element will disable file and registry virtualization.
Remove this element if your application requires this virtualization for backwards
compatibility.
-->
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
</requestedPrivileges>
</security>
</trustInfo>
<dependency>
<dependentOS>
<osVersionInfo>
<os majorVersion="5" minorVersion="1" buildNumber="2600" servicePackMajor="0" />
</osVersionInfo>
</dependentOS>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="Microsoft.Windows.CommonLanguageRuntime" version="4.0.30319.0" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="Disk Manager.exe" size="253360">
<assemblyIdentity name="Disk Manager" version="1.0.0.0" 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>OkumWuUtgF6B0/MrAlOAhXPrKUbCk6uGuDWSe9bEka0=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<file name="Disk Manager.exe.config" size="1048">
<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>c/6vlTshT+90JT8TpzR0vyrIsAHlOWYtmmZke0wFGaY=</dsig:DigestValue>
</hash>
</file>
<file name="if_network1_216674.ico" size="106802">
<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>nDs/J1vhb0HJ9OX4T+Y+XS6U02RrO9785rBE/lk+DSk=</dsig:DigestValue>
</hash>
</file>
<file name="if_network-workgroup_118928.ico" size="113146">
<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>V/ZKtqIDEE8t8P4wKM1DPs7JWCtZhKCfHS4Gq1ltZJc=</dsig:DigestValue>
</hash>
</file>
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
<application>
<!-- A list of the Windows versions that this application has been tested on and is
is designed to work with. Uncomment the appropriate elements and Windows will
automatically selected the most compatible environment. -->
<!-- Windows Vista -->
<!--<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}" />-->
<!-- Windows 7 -->
<!--<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}" />-->
<!-- Windows 8 -->
<!--<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}" />-->
<!-- Windows 8.1 -->
<!--<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}" />-->
<!-- Windows 10 -->
<!--<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}" />-->
</application>
</compatibility>
<publisherIdentity name="CN=MIKE-PC\micha" issuerKeyHash="5327ed277f65b50666bf74ec2cbd6e4588dac126" /><Signature Id="StrongNameSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>9rN62syxNAIi8asR5j7oPHDUT+9O64fvV3Dt/dLj6L0=</DigestValue></Reference></SignedInfo><SignatureValue>N1AMQky8d0PNrZlaTlR/N+v6FoqrwbS2AxoNobkKrma1ynvCuF2NFSIlCVytlLGTxTI4exdUA8PjUyz36e3G/rktbFI6hofELqypUDmWRWHdOXcPyCpvwQfLcNm3bRoPX4E0RMaXeafUrktOvia6lPqIH3TgABrwe35e5aKog/4=</SignatureValue><KeyInfo Id="StrongNameKeyInfo"><KeyValue><RSAKeyValue><Modulus>0A/YiMgkoW3Ek0vBsqvrrPXGL4ImfdcwMJgnHkmVkARt8bQeTBhMol4SglCH5M5xb79mDrexqxFkYJfE2SAadV07B+Sit5nc/OMERu8pCr806UqwnxteEg+JkpSrFciVkUuaOWJMN7eW6chX1bMCvxosopsdtA0PXxji/I3M/zE=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><msrel:RelData xmlns:msrel="http://schemas.microsoft.com/windows/rel/2005/reldata"><r:license xmlns:r="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:as="http://schemas.microsoft.com/windows/pki/2005/Authenticode"><r:grant><as:ManifestInformation Hash="bde8e3d2fded7057ef87eb4eef4fd4703ce83ee611abf1220234b1ccda7ab3f6" Description="" Url=""><as:assemblyIdentity name="Disk Manager.exe" version="0.4.8.0" publicKeyToken="567a80808fa0355b" language="en-US" processorArchitecture="msil" type="win32" /></as:ManifestInformation><as:SignedBy /><as:AuthenticodePublisher><as:X509SubjectName>CN=MIKE-PC\micha</as:X509SubjectName></as:AuthenticodePublisher></r:grant><r:issuer><Signature Id="AuthenticodeSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>JkEumvaku4xEGw2JGmr9l88MQtK/dO5THShBkD9iT2U=</DigestValue></Reference></SignedInfo><SignatureValue>cGFTT1P06L1pweUR/J/Qu29lZFy5nqkXtq1HxAjpQqjoBivynX0vX8N6GhcLvSmTrqxqod7lZ3tqs7NypIsz+LcG3PR/tLGk34MIjZP9J1QmkbOuEyEjXDcvuNY4Nzkrr+L+6R4x3NO83gtwnPnS1+iQM8Ipj2uDgZHywKw01xk=</SignatureValue><KeyInfo><KeyValue><RSAKeyValue><Modulus>0A/YiMgkoW3Ek0vBsqvrrPXGL4ImfdcwMJgnHkmVkARt8bQeTBhMol4SglCH5M5xb79mDrexqxFkYJfE2SAadV07B+Sit5nc/OMERu8pCr806UqwnxteEg+JkpSrFciVkUuaOWJMN7eW6chX1bMCvxosopsdtA0PXxji/I3M/zE=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><X509Data><X509Certificate>MIIBzTCCATagAwIBAgIQEmGCKGTfRKVEFb6U0NQ8GDANBgkqhkiG9w0BAQsFADAlMSMwIQYDVQQDHhoATQBJAEsARQAtAFAAQwBcAG0AaQBjAGgAYTAeFw0xODA1MDgyMDM0NDdaFw0xOTA1MDkwMjM0NDdaMCUxIzAhBgNVBAMeGgBNAEkASwBFAC0AUABDAFwAbQBpAGMAaABhMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDQD9iIyCShbcSTS8Gyq+us9cYvgiZ91zAwmCceSZWQBG3xtB5MGEyiXhKCUIfkznFvv2YOt7GrEWRgl8TZIBp1XTsH5KK3mdz84wRG7ykKvzTpSrCfG14SD4mSlKsVyJWRS5o5Ykw3t5bpyFfVswK/Giyimx20DQ9fGOL8jcz/MQIDAQABMA0GCSqGSIb3DQEBCwUAA4GBACOGzGIJZVChmMAma5kfwvg6am5sbd7IabI5/gJVfK3SkEp1l21n6hPMIuo4Ihh1kL7fgQ1kRvVKSFqaWUtTvi4j9ZtZxQtgmlQaRVz4GmUT+lNvdawD5n3P3/0dwOntv/KZZFiUo9prbZkQVlKu749BbGJj5BWVtS/ZVoyZqc3F</X509Certificate></X509Data></KeyInfo></Signature></r:issuer></r:license></msrel:RelData></KeyInfo></Signature></asmv1:assembly>

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 104 KiB

View File

@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<assemblyIdentity name="Disk Manager.application" version="0.4.8.1" publicKeyToken="567a80808fa0355b" language="en-US" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" />
<description asmv2:publisher="Michał Czyż" asmv2:product="Disk Manager" xmlns="urn:schemas-microsoft-com:asm.v1" />
<deployment install="true" mapFileExtensions="true" minimumRequiredVersion="0.4.7.0" co.v1:createDesktopShortcut="true">
<subscription>
<update>
<beforeApplicationStartup />
</update>
</subscription>
<deploymentProvider codebase="file://mike-pc/App/publish/Disk%20Manager.application" />
</deployment>
<compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2">
<framework targetVersion="4.5.2" profile="Full" supportedRuntime="4.0.30319" />
</compatibleFrameworks>
<dependency>
<dependentAssembly dependencyType="install" codebase="Application Files\Disk Manager_0_4_8_1\Disk Manager.exe.manifest" size="8980">
<assemblyIdentity name="Disk Manager.exe" version="0.4.8.1" publicKeyToken="567a80808fa0355b" language="en-US" processorArchitecture="msil" type="win32" />
<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>6E9kASOt3m9aawKdYThBVJnwqNQNDr/ycQccAhyVRf8=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<publisherIdentity name="CN=MIKE-PC\micha" issuerKeyHash="5327ed277f65b50666bf74ec2cbd6e4588dac126" /><Signature Id="StrongNameSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>o/Rs6QPFQ9f9bQKfnE06BTsrabmKYXyQD03dD34K1sU=</DigestValue></Reference></SignedInfo><SignatureValue>bdT8qdOr2TDaJmHAfzjYeUL0Dvr6tqalhLtoRVhFbwDyeUn9lJpNw/U6bX+RR7FhATk7EYq/6XkkXW8D5HcjiY4rItCQK35qPGza8GXC+WeszSEUNw4Af6kQ5d9sJyEK/1HkHzFjd2UWxWDPqLucNw/rJY//kk1Mo3mEMgcM89I=</SignatureValue><KeyInfo Id="StrongNameKeyInfo"><KeyValue><RSAKeyValue><Modulus>0A/YiMgkoW3Ek0vBsqvrrPXGL4ImfdcwMJgnHkmVkARt8bQeTBhMol4SglCH5M5xb79mDrexqxFkYJfE2SAadV07B+Sit5nc/OMERu8pCr806UqwnxteEg+JkpSrFciVkUuaOWJMN7eW6chX1bMCvxosopsdtA0PXxji/I3M/zE=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><msrel:RelData xmlns:msrel="http://schemas.microsoft.com/windows/rel/2005/reldata"><r:license xmlns:r="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:as="http://schemas.microsoft.com/windows/pki/2005/Authenticode"><r:grant><as:ManifestInformation Hash="c5d60a7e0fdd4d0f907c618ab9692b3b053a4d9c9f026dfdd743c503e96cf4a3" Description="" Url=""><as:assemblyIdentity name="Disk Manager.application" version="0.4.8.1" publicKeyToken="567a80808fa0355b" language="en-US" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" /></as:ManifestInformation><as:SignedBy /><as:AuthenticodePublisher><as:X509SubjectName>CN=MIKE-PC\micha</as:X509SubjectName></as:AuthenticodePublisher></r:grant><r:issuer><Signature Id="AuthenticodeSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>y6neg/C8cPN8TcOZSof9NN9OuyB7p+kiUTpynaMPsrw=</DigestValue></Reference></SignedInfo><SignatureValue>HdPgcg75GCRiXmB2dSeyegceNxCcSDVNB3uc+gzC4qAiBGp94RGHmVn6Xw5QeE+5fuu3O0I7d6U9TCHQOvqwqN7gF9LKBKfAuwdoguNURT4kAT4IA0YqPdN4v/9HqZJosvafNYJsJAVfbkrWyG9TwkekCXGj+JseFoatZhVWaQs=</SignatureValue><KeyInfo><KeyValue><RSAKeyValue><Modulus>0A/YiMgkoW3Ek0vBsqvrrPXGL4ImfdcwMJgnHkmVkARt8bQeTBhMol4SglCH5M5xb79mDrexqxFkYJfE2SAadV07B+Sit5nc/OMERu8pCr806UqwnxteEg+JkpSrFciVkUuaOWJMN7eW6chX1bMCvxosopsdtA0PXxji/I3M/zE=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><X509Data><X509Certificate>MIIBzTCCATagAwIBAgIQEmGCKGTfRKVEFb6U0NQ8GDANBgkqhkiG9w0BAQsFADAlMSMwIQYDVQQDHhoATQBJAEsARQAtAFAAQwBcAG0AaQBjAGgAYTAeFw0xODA1MDgyMDM0NDdaFw0xOTA1MDkwMjM0NDdaMCUxIzAhBgNVBAMeGgBNAEkASwBFAC0AUABDAFwAbQBpAGMAaABhMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDQD9iIyCShbcSTS8Gyq+us9cYvgiZ91zAwmCceSZWQBG3xtB5MGEyiXhKCUIfkznFvv2YOt7GrEWRgl8TZIBp1XTsH5KK3mdz84wRG7ykKvzTpSrCfG14SD4mSlKsVyJWRS5o5Ykw3t5bpyFfVswK/Giyimx20DQ9fGOL8jcz/MQIDAQABMA0GCSqGSIb3DQEBCwUAA4GBACOGzGIJZVChmMAma5kfwvg6am5sbd7IabI5/gJVfK3SkEp1l21n6hPMIuo4Ihh1kL7fgQ1kRvVKSFqaWUtTvi4j9ZtZxQtgmlQaRVz4GmUT+lNvdawD5n3P3/0dwOntv/KZZFiUo9prbZkQVlKu749BbGJj5BWVtS/ZVoyZqc3F</X509Certificate></X509Data></KeyInfo></Signature></r:issuer></r:license></msrel:RelData></KeyInfo></Signature></asmv1:assembly>

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="Disk_Manager.My.MySettings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
</sectionGroup>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
<userSettings>
<Disk_Manager.My.MySettings>
<setting name="POWER_IP" serializeAs="String">
<value>192.168.0.200</value>
</setting>
<setting name="OS_IP" serializeAs="String">
<value>192.168.0.17</value>
</setting>
</Disk_Manager.My.MySettings>
</userSettings>
</configuration>

View File

@@ -0,0 +1,101 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<asmv1:assemblyIdentity name="Disk Manager.exe" version="0.4.8.1" publicKeyToken="567a80808fa0355b" language="en-US" processorArchitecture="msil" type="win32" />
<description asmv2:iconFile="if_network-workgroup_118928.ico" xmlns="urn:schemas-microsoft-com:asm.v1" />
<application />
<entryPoint>
<assemblyIdentity name="Disk Manager" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<commandLine file="Disk Manager.exe" parameters="" />
</entryPoint>
<trustInfo>
<security>
<applicationRequestMinimum>
<PermissionSet Unrestricted="true" ID="Custom" SameSite="site" />
<defaultAssemblyRequest permissionSetReference="Custom" />
</applicationRequestMinimum>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<!-- UAC Manifest Options
If you want to change the Windows User Account Control level replace the
requestedExecutionLevel node with one of the following.
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
<requestedExecutionLevel level="highestAvailable" uiAccess="false" />
Specifying requestedExecutionLevel element will disable file and registry virtualization.
Remove this element if your application requires this virtualization for backwards
compatibility.
-->
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
</requestedPrivileges>
</security>
</trustInfo>
<dependency>
<dependentOS>
<osVersionInfo>
<os majorVersion="5" minorVersion="1" buildNumber="2600" servicePackMajor="0" />
</osVersionInfo>
</dependentOS>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="Microsoft.Windows.CommonLanguageRuntime" version="4.0.30319.0" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="Disk Manager.exe" size="253360">
<assemblyIdentity name="Disk Manager" version="1.0.0.0" 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>urRDADmwZy6Xdp2+kfHSHzJxeqmYgpK0BYjkZ26B6Ro=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<file name="Disk Manager.exe.config" size="1048">
<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>c/6vlTshT+90JT8TpzR0vyrIsAHlOWYtmmZke0wFGaY=</dsig:DigestValue>
</hash>
</file>
<file name="if_network1_216674.ico" size="106802">
<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>nDs/J1vhb0HJ9OX4T+Y+XS6U02RrO9785rBE/lk+DSk=</dsig:DigestValue>
</hash>
</file>
<file name="if_network-workgroup_118928.ico" size="113146">
<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>V/ZKtqIDEE8t8P4wKM1DPs7JWCtZhKCfHS4Gq1ltZJc=</dsig:DigestValue>
</hash>
</file>
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
<application>
<!-- A list of the Windows versions that this application has been tested on and is
is designed to work with. Uncomment the appropriate elements and Windows will
automatically selected the most compatible environment. -->
<!-- Windows Vista -->
<!--<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}" />-->
<!-- Windows 7 -->
<!--<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}" />-->
<!-- Windows 8 -->
<!--<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}" />-->
<!-- Windows 8.1 -->
<!--<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}" />-->
<!-- Windows 10 -->
<!--<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}" />-->
</application>
</compatibility>
<publisherIdentity name="CN=MIKE-PC\micha" issuerKeyHash="5327ed277f65b50666bf74ec2cbd6e4588dac126" /><Signature Id="StrongNameSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>JETkomMJ1arN59dL2yFOmBXRzV8BphS24xgPK5+Cr5A=</DigestValue></Reference></SignedInfo><SignatureValue>VfamP5zhGYUGP9WKnG/Xvs1445jOZC1OH77itjeEVlazj4kwqxo0M8eKgz2OoNyCkZHYVK3HWV8dpfY+pf6JtORwh9QC3WlMANNQn3Zeq0C9xW3HePaOeG0wgRpG/q0Nf1w6lYzaiMIj8jG0nX1ADePsNXQL5SkNVH37H1WVJjk=</SignatureValue><KeyInfo Id="StrongNameKeyInfo"><KeyValue><RSAKeyValue><Modulus>0A/YiMgkoW3Ek0vBsqvrrPXGL4ImfdcwMJgnHkmVkARt8bQeTBhMol4SglCH5M5xb79mDrexqxFkYJfE2SAadV07B+Sit5nc/OMERu8pCr806UqwnxteEg+JkpSrFciVkUuaOWJMN7eW6chX1bMCvxosopsdtA0PXxji/I3M/zE=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><msrel:RelData xmlns:msrel="http://schemas.microsoft.com/windows/rel/2005/reldata"><r:license xmlns:r="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:as="http://schemas.microsoft.com/windows/pki/2005/Authenticode"><r:grant><as:ManifestInformation Hash="90af829f2b0f18e3b614a6015fcdd115984e21db4bd7e7cdaad50963a2e44424" Description="" Url=""><as:assemblyIdentity name="Disk Manager.exe" version="0.4.8.1" publicKeyToken="567a80808fa0355b" language="en-US" processorArchitecture="msil" type="win32" /></as:ManifestInformation><as:SignedBy /><as:AuthenticodePublisher><as:X509SubjectName>CN=MIKE-PC\micha</as:X509SubjectName></as:AuthenticodePublisher></r:grant><r:issuer><Signature Id="AuthenticodeSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>+LWhbl+GP5t6ZABdVVDoy80bXIhMsUrjUUb6lx1O61Q=</DigestValue></Reference></SignedInfo><SignatureValue>QqpTuODn/q6iVvmdYy5uQuAW2k1iCsn+wnKv48SWjaz84Dbcieo52FyqrFhCDFEH34+KeHFuNed0dS3IgWTD/QUQob0Aw2uanBpTnVRIRmZBBlt8VLl8An3lIYXjewp/L2tWBajOye6C7GSLrmJoiPf+H0UCtPJreoLJokKTJOI=</SignatureValue><KeyInfo><KeyValue><RSAKeyValue><Modulus>0A/YiMgkoW3Ek0vBsqvrrPXGL4ImfdcwMJgnHkmVkARt8bQeTBhMol4SglCH5M5xb79mDrexqxFkYJfE2SAadV07B+Sit5nc/OMERu8pCr806UqwnxteEg+JkpSrFciVkUuaOWJMN7eW6chX1bMCvxosopsdtA0PXxji/I3M/zE=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><X509Data><X509Certificate>MIIBzTCCATagAwIBAgIQEmGCKGTfRKVEFb6U0NQ8GDANBgkqhkiG9w0BAQsFADAlMSMwIQYDVQQDHhoATQBJAEsARQAtAFAAQwBcAG0AaQBjAGgAYTAeFw0xODA1MDgyMDM0NDdaFw0xOTA1MDkwMjM0NDdaMCUxIzAhBgNVBAMeGgBNAEkASwBFAC0AUABDAFwAbQBpAGMAaABhMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDQD9iIyCShbcSTS8Gyq+us9cYvgiZ91zAwmCceSZWQBG3xtB5MGEyiXhKCUIfkznFvv2YOt7GrEWRgl8TZIBp1XTsH5KK3mdz84wRG7ykKvzTpSrCfG14SD4mSlKsVyJWRS5o5Ykw3t5bpyFfVswK/Giyimx20DQ9fGOL8jcz/MQIDAQABMA0GCSqGSIb3DQEBCwUAA4GBACOGzGIJZVChmMAma5kfwvg6am5sbd7IabI5/gJVfK3SkEp1l21n6hPMIuo4Ihh1kL7fgQ1kRvVKSFqaWUtTvi4j9ZtZxQtgmlQaRVz4GmUT+lNvdawD5n3P3/0dwOntv/KZZFiUo9prbZkQVlKu749BbGJj5BWVtS/ZVoyZqc3F</X509Certificate></X509Data></KeyInfo></Signature></r:issuer></r:license></msrel:RelData></KeyInfo></Signature></asmv1:assembly>

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 104 KiB

View File

@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<assemblyIdentity name="Disk Manager.application" version="0.4.8.2" publicKeyToken="567a80808fa0355b" language="en-US" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" />
<description asmv2:publisher="Michał Czyż" asmv2:product="Disk Manager" xmlns="urn:schemas-microsoft-com:asm.v1" />
<deployment install="true" mapFileExtensions="true" minimumRequiredVersion="0.4.7.0" co.v1:createDesktopShortcut="true">
<subscription>
<update>
<expiration maximumAge="0" unit="days" />
</update>
</subscription>
<deploymentProvider codebase="file://mike-pc/App/publish/Disk%20Manager.application" />
</deployment>
<compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2">
<framework targetVersion="4.5.2" profile="Full" supportedRuntime="4.0.30319" />
</compatibleFrameworks>
<dependency>
<dependentAssembly dependencyType="install" codebase="Application Files\Disk Manager_0_4_8_2\Disk Manager.exe.manifest" size="8980">
<assemblyIdentity name="Disk Manager.exe" version="0.4.8.2" publicKeyToken="567a80808fa0355b" language="en-US" processorArchitecture="msil" type="win32" />
<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>VcdIKOvZy5nfeNjxtf8/ELV7eqZpCQ5aCC2MY/j8dnA=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<publisherIdentity name="CN=MIKE-PC\micha" issuerKeyHash="5327ed277f65b50666bf74ec2cbd6e4588dac126" /><Signature Id="StrongNameSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>H2Mqs3ddA7UQioJUn5eUnwL1dmpbXwltldgIw8F+PyM=</DigestValue></Reference></SignedInfo><SignatureValue>mPbXann3ZpplULEvSUR8yU48P0cDACaEeMwBw6WyYAbw9oANEqwG/bpeS38yqvnpFzlD/8K8Fudm6odhd0WeOXirDKpk7OTFm34KLnjkkM7bBs+OCbqHw017PgU5N3Qyfhak8IqZwqE3vLU6qOjVT3Yr2y9ycXgG/ATzKv0x7No=</SignatureValue><KeyInfo Id="StrongNameKeyInfo"><KeyValue><RSAKeyValue><Modulus>0A/YiMgkoW3Ek0vBsqvrrPXGL4ImfdcwMJgnHkmVkARt8bQeTBhMol4SglCH5M5xb79mDrexqxFkYJfE2SAadV07B+Sit5nc/OMERu8pCr806UqwnxteEg+JkpSrFciVkUuaOWJMN7eW6chX1bMCvxosopsdtA0PXxji/I3M/zE=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><msrel:RelData xmlns:msrel="http://schemas.microsoft.com/windows/rel/2005/reldata"><r:license xmlns:r="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:as="http://schemas.microsoft.com/windows/pki/2005/Authenticode"><r:grant><as:ManifestInformation Hash="233f7ec1c308d8956d095f5b6a76f5029f94979f54828a10b5035d77b32a631f" Description="" Url=""><as:assemblyIdentity name="Disk Manager.application" version="0.4.8.2" publicKeyToken="567a80808fa0355b" language="en-US" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" /></as:ManifestInformation><as:SignedBy /><as:AuthenticodePublisher><as:X509SubjectName>CN=MIKE-PC\micha</as:X509SubjectName></as:AuthenticodePublisher></r:grant><r:issuer><Signature Id="AuthenticodeSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>inKdz6H/d/E6VD0sOetJ0dlpFq5P6MXk/WBOAd/xHfs=</DigestValue></Reference></SignedInfo><SignatureValue>Pw0SRvhqD4Pmp4IgiR7npBQ3MWlsHxHoU4IDF0LCfl1VveO5qWOKGcSCcqAc4AYWoR83yLJ1U8oEWFw+0KJdKg5fefYqPuFJ313fEIOcULiS9OlpgEXh/w/rKsu7OF76vb691Nm8h67jSCTc5prIvmhT383B0eP4lnnxKXPltEE=</SignatureValue><KeyInfo><KeyValue><RSAKeyValue><Modulus>0A/YiMgkoW3Ek0vBsqvrrPXGL4ImfdcwMJgnHkmVkARt8bQeTBhMol4SglCH5M5xb79mDrexqxFkYJfE2SAadV07B+Sit5nc/OMERu8pCr806UqwnxteEg+JkpSrFciVkUuaOWJMN7eW6chX1bMCvxosopsdtA0PXxji/I3M/zE=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><X509Data><X509Certificate>MIIBzTCCATagAwIBAgIQEmGCKGTfRKVEFb6U0NQ8GDANBgkqhkiG9w0BAQsFADAlMSMwIQYDVQQDHhoATQBJAEsARQAtAFAAQwBcAG0AaQBjAGgAYTAeFw0xODA1MDgyMDM0NDdaFw0xOTA1MDkwMjM0NDdaMCUxIzAhBgNVBAMeGgBNAEkASwBFAC0AUABDAFwAbQBpAGMAaABhMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDQD9iIyCShbcSTS8Gyq+us9cYvgiZ91zAwmCceSZWQBG3xtB5MGEyiXhKCUIfkznFvv2YOt7GrEWRgl8TZIBp1XTsH5KK3mdz84wRG7ykKvzTpSrCfG14SD4mSlKsVyJWRS5o5Ykw3t5bpyFfVswK/Giyimx20DQ9fGOL8jcz/MQIDAQABMA0GCSqGSIb3DQEBCwUAA4GBACOGzGIJZVChmMAma5kfwvg6am5sbd7IabI5/gJVfK3SkEp1l21n6hPMIuo4Ihh1kL7fgQ1kRvVKSFqaWUtTvi4j9ZtZxQtgmlQaRVz4GmUT+lNvdawD5n3P3/0dwOntv/KZZFiUo9prbZkQVlKu749BbGJj5BWVtS/ZVoyZqc3F</X509Certificate></X509Data></KeyInfo></Signature></r:issuer></r:license></msrel:RelData></KeyInfo></Signature></asmv1:assembly>

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="Disk_Manager.My.MySettings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
</sectionGroup>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
<userSettings>
<Disk_Manager.My.MySettings>
<setting name="POWER_IP" serializeAs="String">
<value>192.168.0.200</value>
</setting>
<setting name="OS_IP" serializeAs="String">
<value>192.168.0.17</value>
</setting>
</Disk_Manager.My.MySettings>
</userSettings>
</configuration>

View File

@@ -0,0 +1,101 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<asmv1:assemblyIdentity name="Disk Manager.exe" version="0.4.8.2" publicKeyToken="567a80808fa0355b" language="en-US" processorArchitecture="msil" type="win32" />
<description asmv2:iconFile="if_network-workgroup_118928.ico" xmlns="urn:schemas-microsoft-com:asm.v1" />
<application />
<entryPoint>
<assemblyIdentity name="Disk Manager" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<commandLine file="Disk Manager.exe" parameters="" />
</entryPoint>
<trustInfo>
<security>
<applicationRequestMinimum>
<PermissionSet Unrestricted="true" ID="Custom" SameSite="site" />
<defaultAssemblyRequest permissionSetReference="Custom" />
</applicationRequestMinimum>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<!-- UAC Manifest Options
If you want to change the Windows User Account Control level replace the
requestedExecutionLevel node with one of the following.
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
<requestedExecutionLevel level="highestAvailable" uiAccess="false" />
Specifying requestedExecutionLevel element will disable file and registry virtualization.
Remove this element if your application requires this virtualization for backwards
compatibility.
-->
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
</requestedPrivileges>
</security>
</trustInfo>
<dependency>
<dependentOS>
<osVersionInfo>
<os majorVersion="5" minorVersion="1" buildNumber="2600" servicePackMajor="0" />
</osVersionInfo>
</dependentOS>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="Microsoft.Windows.CommonLanguageRuntime" version="4.0.30319.0" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="Disk Manager.exe" size="253360">
<assemblyIdentity name="Disk Manager" version="1.0.0.0" 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>JYERJKdpbdiSU9geg6qtxTVpc6bB3WYw+b5tC/aNAOk=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<file name="Disk Manager.exe.config" size="1048">
<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>c/6vlTshT+90JT8TpzR0vyrIsAHlOWYtmmZke0wFGaY=</dsig:DigestValue>
</hash>
</file>
<file name="if_network1_216674.ico" size="106802">
<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>nDs/J1vhb0HJ9OX4T+Y+XS6U02RrO9785rBE/lk+DSk=</dsig:DigestValue>
</hash>
</file>
<file name="if_network-workgroup_118928.ico" size="113146">
<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>V/ZKtqIDEE8t8P4wKM1DPs7JWCtZhKCfHS4Gq1ltZJc=</dsig:DigestValue>
</hash>
</file>
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
<application>
<!-- A list of the Windows versions that this application has been tested on and is
is designed to work with. Uncomment the appropriate elements and Windows will
automatically selected the most compatible environment. -->
<!-- Windows Vista -->
<!--<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}" />-->
<!-- Windows 7 -->
<!--<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}" />-->
<!-- Windows 8 -->
<!--<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}" />-->
<!-- Windows 8.1 -->
<!--<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}" />-->
<!-- Windows 10 -->
<!--<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}" />-->
</application>
</compatibility>
<publisherIdentity name="CN=MIKE-PC\micha" issuerKeyHash="5327ed277f65b50666bf74ec2cbd6e4588dac126" /><Signature Id="StrongNameSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>20MqWQIhbuaomIwAqAp9TewbtF9S4WQxCHChDSJBELs=</DigestValue></Reference></SignedInfo><SignatureValue>OXqQGHfRXyGg+Z569OqJYwHG9gwcVuiE4/m+yiO7SxZ+hQGadL2LgPZkkqA95zbz0vcyOXjV17NVPu8+piLAHZoZRfQKTXJYm09CkhzVDeD8LyMTOyyTxKqN9kOfG3ho0ENlrMiIgzVj1L+W/k0F0z6ZPzdyrrl/23q/JiOUmIk=</SignatureValue><KeyInfo Id="StrongNameKeyInfo"><KeyValue><RSAKeyValue><Modulus>0A/YiMgkoW3Ek0vBsqvrrPXGL4ImfdcwMJgnHkmVkARt8bQeTBhMol4SglCH5M5xb79mDrexqxFkYJfE2SAadV07B+Sit5nc/OMERu8pCr806UqwnxteEg+JkpSrFciVkUuaOWJMN7eW6chX1bMCvxosopsdtA0PXxji/I3M/zE=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><msrel:RelData xmlns:msrel="http://schemas.microsoft.com/windows/rel/2005/reldata"><r:license xmlns:r="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:as="http://schemas.microsoft.com/windows/pki/2005/Authenticode"><r:grant><as:ManifestInformation Hash="bb1041220da170083164e1525fb41bec4d7d0aa8008c98a8e66e2102592a43db" Description="" Url=""><as:assemblyIdentity name="Disk Manager.exe" version="0.4.8.2" publicKeyToken="567a80808fa0355b" language="en-US" processorArchitecture="msil" type="win32" /></as:ManifestInformation><as:SignedBy /><as:AuthenticodePublisher><as:X509SubjectName>CN=MIKE-PC\micha</as:X509SubjectName></as:AuthenticodePublisher></r:grant><r:issuer><Signature Id="AuthenticodeSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>uwArLPDLjd/v/QVXL9Ym8efUa+fSuw6F7DaAv6wE2R8=</DigestValue></Reference></SignedInfo><SignatureValue>QoTfYxKWzHeX7isyrYOs5xPDQzmh2JLv9rK55bpLOWsK9hOD4FnMsS6U+sO57VaRjqTvs/Syo3o8H+l+dSBet29E5z0X4VSgvK0tgsJPy3HOO9tauPPJCHWxbBSwomOQ5aucRrwdEUo1R1BgMKBv1bhPjp3/yXs9tzyw3JPpmo0=</SignatureValue><KeyInfo><KeyValue><RSAKeyValue><Modulus>0A/YiMgkoW3Ek0vBsqvrrPXGL4ImfdcwMJgnHkmVkARt8bQeTBhMol4SglCH5M5xb79mDrexqxFkYJfE2SAadV07B+Sit5nc/OMERu8pCr806UqwnxteEg+JkpSrFciVkUuaOWJMN7eW6chX1bMCvxosopsdtA0PXxji/I3M/zE=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><X509Data><X509Certificate>MIIBzTCCATagAwIBAgIQEmGCKGTfRKVEFb6U0NQ8GDANBgkqhkiG9w0BAQsFADAlMSMwIQYDVQQDHhoATQBJAEsARQAtAFAAQwBcAG0AaQBjAGgAYTAeFw0xODA1MDgyMDM0NDdaFw0xOTA1MDkwMjM0NDdaMCUxIzAhBgNVBAMeGgBNAEkASwBFAC0AUABDAFwAbQBpAGMAaABhMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDQD9iIyCShbcSTS8Gyq+us9cYvgiZ91zAwmCceSZWQBG3xtB5MGEyiXhKCUIfkznFvv2YOt7GrEWRgl8TZIBp1XTsH5KK3mdz84wRG7ykKvzTpSrCfG14SD4mSlKsVyJWRS5o5Ykw3t5bpyFfVswK/Giyimx20DQ9fGOL8jcz/MQIDAQABMA0GCSqGSIb3DQEBCwUAA4GBACOGzGIJZVChmMAma5kfwvg6am5sbd7IabI5/gJVfK3SkEp1l21n6hPMIuo4Ihh1kL7fgQ1kRvVKSFqaWUtTvi4j9ZtZxQtgmlQaRVz4GmUT+lNvdawD5n3P3/0dwOntv/KZZFiUo9prbZkQVlKu749BbGJj5BWVtS/ZVoyZqc3F</X509Certificate></X509Data></KeyInfo></Signature></r:issuer></r:license></msrel:RelData></KeyInfo></Signature></asmv1:assembly>

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 104 KiB

View File

@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<assemblyIdentity name="Disk Manager.application" version="0.4.8.2" publicKeyToken="567a80808fa0355b" language="en-US" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" />
<description asmv2:publisher="Michał Czyż" asmv2:product="Disk Manager" xmlns="urn:schemas-microsoft-com:asm.v1" />
<deployment install="true" mapFileExtensions="true" minimumRequiredVersion="0.4.7.0" co.v1:createDesktopShortcut="true">
<subscription>
<update>
<expiration maximumAge="0" unit="days" />
</update>
</subscription>
<deploymentProvider codebase="file://mike-pc/App/publish/Disk%20Manager.application" />
</deployment>
<compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2">
<framework targetVersion="4.5.2" profile="Full" supportedRuntime="4.0.30319" />
</compatibleFrameworks>
<dependency>
<dependentAssembly dependencyType="install" codebase="Application Files\Disk Manager_0_4_8_2\Disk Manager.exe.manifest" size="8980">
<assemblyIdentity name="Disk Manager.exe" version="0.4.8.2" publicKeyToken="567a80808fa0355b" language="en-US" processorArchitecture="msil" type="win32" />
<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>VcdIKOvZy5nfeNjxtf8/ELV7eqZpCQ5aCC2MY/j8dnA=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<publisherIdentity name="CN=MIKE-PC\micha" issuerKeyHash="5327ed277f65b50666bf74ec2cbd6e4588dac126" /><Signature Id="StrongNameSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>H2Mqs3ddA7UQioJUn5eUnwL1dmpbXwltldgIw8F+PyM=</DigestValue></Reference></SignedInfo><SignatureValue>mPbXann3ZpplULEvSUR8yU48P0cDACaEeMwBw6WyYAbw9oANEqwG/bpeS38yqvnpFzlD/8K8Fudm6odhd0WeOXirDKpk7OTFm34KLnjkkM7bBs+OCbqHw017PgU5N3Qyfhak8IqZwqE3vLU6qOjVT3Yr2y9ycXgG/ATzKv0x7No=</SignatureValue><KeyInfo Id="StrongNameKeyInfo"><KeyValue><RSAKeyValue><Modulus>0A/YiMgkoW3Ek0vBsqvrrPXGL4ImfdcwMJgnHkmVkARt8bQeTBhMol4SglCH5M5xb79mDrexqxFkYJfE2SAadV07B+Sit5nc/OMERu8pCr806UqwnxteEg+JkpSrFciVkUuaOWJMN7eW6chX1bMCvxosopsdtA0PXxji/I3M/zE=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><msrel:RelData xmlns:msrel="http://schemas.microsoft.com/windows/rel/2005/reldata"><r:license xmlns:r="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:as="http://schemas.microsoft.com/windows/pki/2005/Authenticode"><r:grant><as:ManifestInformation Hash="233f7ec1c308d8956d095f5b6a76f5029f94979f54828a10b5035d77b32a631f" Description="" Url=""><as:assemblyIdentity name="Disk Manager.application" version="0.4.8.2" publicKeyToken="567a80808fa0355b" language="en-US" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" /></as:ManifestInformation><as:SignedBy /><as:AuthenticodePublisher><as:X509SubjectName>CN=MIKE-PC\micha</as:X509SubjectName></as:AuthenticodePublisher></r:grant><r:issuer><Signature Id="AuthenticodeSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>inKdz6H/d/E6VD0sOetJ0dlpFq5P6MXk/WBOAd/xHfs=</DigestValue></Reference></SignedInfo><SignatureValue>Pw0SRvhqD4Pmp4IgiR7npBQ3MWlsHxHoU4IDF0LCfl1VveO5qWOKGcSCcqAc4AYWoR83yLJ1U8oEWFw+0KJdKg5fefYqPuFJ313fEIOcULiS9OlpgEXh/w/rKsu7OF76vb691Nm8h67jSCTc5prIvmhT383B0eP4lnnxKXPltEE=</SignatureValue><KeyInfo><KeyValue><RSAKeyValue><Modulus>0A/YiMgkoW3Ek0vBsqvrrPXGL4ImfdcwMJgnHkmVkARt8bQeTBhMol4SglCH5M5xb79mDrexqxFkYJfE2SAadV07B+Sit5nc/OMERu8pCr806UqwnxteEg+JkpSrFciVkUuaOWJMN7eW6chX1bMCvxosopsdtA0PXxji/I3M/zE=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><X509Data><X509Certificate>MIIBzTCCATagAwIBAgIQEmGCKGTfRKVEFb6U0NQ8GDANBgkqhkiG9w0BAQsFADAlMSMwIQYDVQQDHhoATQBJAEsARQAtAFAAQwBcAG0AaQBjAGgAYTAeFw0xODA1MDgyMDM0NDdaFw0xOTA1MDkwMjM0NDdaMCUxIzAhBgNVBAMeGgBNAEkASwBFAC0AUABDAFwAbQBpAGMAaABhMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDQD9iIyCShbcSTS8Gyq+us9cYvgiZ91zAwmCceSZWQBG3xtB5MGEyiXhKCUIfkznFvv2YOt7GrEWRgl8TZIBp1XTsH5KK3mdz84wRG7ykKvzTpSrCfG14SD4mSlKsVyJWRS5o5Ykw3t5bpyFfVswK/Giyimx20DQ9fGOL8jcz/MQIDAQABMA0GCSqGSIb3DQEBCwUAA4GBACOGzGIJZVChmMAma5kfwvg6am5sbd7IabI5/gJVfK3SkEp1l21n6hPMIuo4Ihh1kL7fgQ1kRvVKSFqaWUtTvi4j9ZtZxQtgmlQaRVz4GmUT+lNvdawD5n3P3/0dwOntv/KZZFiUo9prbZkQVlKu749BbGJj5BWVtS/ZVoyZqc3F</X509Certificate></X509Data></KeyInfo></Signature></r:issuer></r:license></msrel:RelData></KeyInfo></Signature></asmv1:assembly>

Binary file not shown.