Option to run Racadm locally; handle: logs, exceptions. Separate folders for scripts, logs

This commit is contained in:
2026-01-16 16:21:05 +00:00
parent ecec60554f
commit 803934721f
5 changed files with 1064 additions and 892 deletions

View File

@@ -1,24 +1,24 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using System.Xml.Linq; using System.Xml.Linq;
namespace SSH_Test namespace SSH_Test
{ {
internal class Profile internal class Profile
{ {
public string ProfileName { get; set; } public string ProfileName { get; set; }
public string ProfileType { get; set; } public string ProfileType { get; set; }
public string[] ProfileCommands { get; set; } public string[] ProfileCommands { get; set; }
public Profile(string profileName, string profileType, string[] profileCommands) public Profile(string profileName, string profileType, string[] profileCommands)
{ {
ProfileName = profileName; ProfileName = profileName;
ProfileType = profileType; ProfileType = profileType;
ProfileCommands = profileCommands; ProfileCommands = profileCommands;
} }
} }
} }

View File

@@ -1,203 +1,229 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup> <PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{73DED4CD-B2B1-491E-87B7-BC1F11759C53}</ProjectGuid> <ProjectGuid>{73DED4CD-B2B1-491E-87B7-BC1F11759C53}</ProjectGuid>
<OutputType>Exe</OutputType> <OutputType>WinExe</OutputType>
<RootNamespace>SSH_Test</RootNamespace> <RootNamespace>SSH_Test</RootNamespace>
<AssemblyName>SSH_Test</AssemblyName> <AssemblyName>SSH_Test</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion> <TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment> <FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects> <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>true</Deterministic> <Deterministic>true</Deterministic>
<IsWebBootstrapper>false</IsWebBootstrapper> <IsWebBootstrapper>false</IsWebBootstrapper>
<NuGetPackageImportStamp> <NuGetPackageImportStamp>
</NuGetPackageImportStamp> </NuGetPackageImportStamp>
<PublishUrl>publish\</PublishUrl> <PublishUrl>D:\Shared\VS\</PublishUrl>
<Install>true</Install> <Install>true</Install>
<InstallFrom>Disk</InstallFrom> <InstallFrom>Disk</InstallFrom>
<UpdateEnabled>false</UpdateEnabled> <UpdateEnabled>false</UpdateEnabled>
<UpdateMode>Foreground</UpdateMode> <UpdateMode>Foreground</UpdateMode>
<UpdateInterval>7</UpdateInterval> <UpdateInterval>7</UpdateInterval>
<UpdateIntervalUnits>Days</UpdateIntervalUnits> <UpdateIntervalUnits>Days</UpdateIntervalUnits>
<UpdatePeriodically>false</UpdatePeriodically> <UpdatePeriodically>false</UpdatePeriodically>
<UpdateRequired>false</UpdateRequired> <UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions> <MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>0</ApplicationRevision> <ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>1.0.0.%2a</ApplicationVersion> <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust> <UseApplicationTrust>false</UseApplicationTrust>
<BootstrapperEnabled>true</BootstrapperEnabled> <PublishWizardCompleted>true</PublishWizardCompleted>
</PropertyGroup> <BootstrapperEnabled>true</BootstrapperEnabled>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> </PropertyGroup>
<PlatformTarget>AnyCPU</PlatformTarget> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols> <PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>full</DebugType> <DebugSymbols>true</DebugSymbols>
<Optimize>true</Optimize> <DebugType>full</DebugType>
<OutputPath>bin\Debug\</OutputPath> <Optimize>true</Optimize>
<DefineConstants>DEBUG;TRACE</DefineConstants> <OutputPath>bin\Debug\</OutputPath>
<ErrorReport>prompt</ErrorReport> <DefineConstants>DEBUG;TRACE</DefineConstants>
<WarningLevel>4</WarningLevel> <ErrorReport>prompt</ErrorReport>
</PropertyGroup> <WarningLevel>4</WarningLevel>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> </PropertyGroup>
<PlatformTarget>AnyCPU</PlatformTarget> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType> <PlatformTarget>AnyCPU</PlatformTarget>
<Optimize>true</Optimize> <DebugType>pdbonly</DebugType>
<OutputPath>bin\Release\</OutputPath> <Optimize>true</Optimize>
<DefineConstants>TRACE</DefineConstants> <OutputPath>bin\Release\</OutputPath>
<ErrorReport>prompt</ErrorReport> <DefineConstants>TRACE</DefineConstants>
<WarningLevel>4</WarningLevel> <ErrorReport>prompt</ErrorReport>
</PropertyGroup> <WarningLevel>4</WarningLevel>
<PropertyGroup> </PropertyGroup>
<StartupObject /> <PropertyGroup>
</PropertyGroup> <StartupObject />
<ItemGroup> </PropertyGroup>
<Reference Include="BouncyCastle.Cryptography, Version=2.0.0.0, Culture=neutral, PublicKeyToken=072edcf4a5328938, processorArchitecture=MSIL"> <PropertyGroup>
<HintPath>packages\BouncyCastle.Cryptography.2.6.2\lib\net461\BouncyCastle.Cryptography.dll</HintPath> <TargetZone>LocalIntranet</TargetZone>
</Reference> </PropertyGroup>
<Reference Include="Microsoft.Bcl.AsyncInterfaces, Version=10.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL"> <PropertyGroup>
<HintPath>packages\Microsoft.Bcl.AsyncInterfaces.10.0.0\lib\net462\Microsoft.Bcl.AsyncInterfaces.dll</HintPath> <GenerateManifests>false</GenerateManifests>
</Reference> </PropertyGroup>
<Reference Include="Microsoft.Extensions.DependencyInjection.Abstractions, Version=8.0.0.2, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL"> <PropertyGroup>
<HintPath>packages\Microsoft.Extensions.DependencyInjection.Abstractions.8.0.2\lib\net462\Microsoft.Extensions.DependencyInjection.Abstractions.dll</HintPath> <ApplicationManifest>Properties\app.manifest</ApplicationManifest>
</Reference> </PropertyGroup>
<Reference Include="Microsoft.Extensions.Logging.Abstractions, Version=8.0.0.3, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL"> <PropertyGroup>
<HintPath>packages\Microsoft.Extensions.Logging.Abstractions.8.0.3\lib\net462\Microsoft.Extensions.Logging.Abstractions.dll</HintPath> <ManifestCertificateThumbprint>4A871742B5537E7E2FE907BD60809E3A6E6EEDBF</ManifestCertificateThumbprint>
</Reference> </PropertyGroup>
<Reference Include="Renci.SshNet, Version=2025.1.0.1, Culture=neutral, PublicKeyToken=1cee9f8bde3db106, processorArchitecture=MSIL"> <PropertyGroup>
<HintPath>packages\SSH.NET.2025.1.0\lib\net462\Renci.SshNet.dll</HintPath> <ManifestKeyFile>SSH_Test_TemporaryKey.pfx</ManifestKeyFile>
</Reference> </PropertyGroup>
<Reference Include="System" /> <PropertyGroup>
<Reference Include="System.Buffers, Version=4.0.5.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL"> <SignManifests>true</SignManifests>
<HintPath>packages\System.Buffers.4.6.1\lib\net462\System.Buffers.dll</HintPath> </PropertyGroup>
</Reference> <ItemGroup>
<Reference Include="System.Core" /> <Reference Include="BouncyCastle.Cryptography, Version=2.0.0.0, Culture=neutral, PublicKeyToken=072edcf4a5328938, processorArchitecture=MSIL">
<Reference Include="System.Formats.Asn1, Version=8.0.0.2, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL"> <HintPath>packages\BouncyCastle.Cryptography.2.6.2\lib\net461\BouncyCastle.Cryptography.dll</HintPath>
<HintPath>packages\System.Formats.Asn1.8.0.2\lib\net462\System.Formats.Asn1.dll</HintPath> </Reference>
</Reference> <Reference Include="log4net, Version=3.2.0.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL">
<Reference Include="System.IO.Pipelines, Version=10.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL"> <HintPath>packages\log4net.3.2.0\lib\net462\log4net.dll</HintPath>
<HintPath>packages\System.IO.Pipelines.10.0.0\lib\net462\System.IO.Pipelines.dll</HintPath> </Reference>
</Reference> <Reference Include="Microsoft.Bcl.AsyncInterfaces, Version=10.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<Reference Include="System.Memory, Version=4.0.5.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL"> <HintPath>packages\Microsoft.Bcl.AsyncInterfaces.10.0.0\lib\net462\Microsoft.Bcl.AsyncInterfaces.dll</HintPath>
<HintPath>packages\System.Memory.4.6.3\lib\net462\System.Memory.dll</HintPath> </Reference>
</Reference> <Reference Include="Microsoft.Extensions.DependencyInjection.Abstractions, Version=8.0.0.2, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL">
<Reference Include="System.Numerics" /> <HintPath>packages\Microsoft.Extensions.DependencyInjection.Abstractions.8.0.2\lib\net462\Microsoft.Extensions.DependencyInjection.Abstractions.dll</HintPath>
<Reference Include="System.Numerics.Vectors, Version=4.1.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"> </Reference>
<HintPath>packages\System.Numerics.Vectors.4.6.1\lib\net462\System.Numerics.Vectors.dll</HintPath> <Reference Include="Microsoft.Extensions.Logging.Abstractions, Version=8.0.0.3, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL">
</Reference> <HintPath>packages\Microsoft.Extensions.Logging.Abstractions.8.0.3\lib\net462\Microsoft.Extensions.Logging.Abstractions.dll</HintPath>
<Reference Include="System.Runtime.CompilerServices.Unsafe, Version=6.0.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"> </Reference>
<HintPath>packages\System.Runtime.CompilerServices.Unsafe.6.1.2\lib\net462\System.Runtime.CompilerServices.Unsafe.dll</HintPath> <Reference Include="Renci.SshNet, Version=2025.1.0.1, Culture=neutral, PublicKeyToken=1cee9f8bde3db106, processorArchitecture=MSIL">
</Reference> <HintPath>packages\SSH.NET.2025.1.0\lib\net462\Renci.SshNet.dll</HintPath>
<Reference Include="System.Text.Encodings.Web, Version=10.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL"> </Reference>
<HintPath>packages\System.Text.Encodings.Web.10.0.0\lib\net462\System.Text.Encodings.Web.dll</HintPath> <Reference Include="System" />
</Reference> <Reference Include="System.Buffers, Version=4.0.5.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<Reference Include="System.Text.Json, Version=10.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL"> <HintPath>packages\System.Buffers.4.6.1\lib\net462\System.Buffers.dll</HintPath>
<HintPath>packages\System.Text.Json.10.0.0\lib\net462\System.Text.Json.dll</HintPath> </Reference>
</Reference> <Reference Include="System.Configuration" />
<Reference Include="System.Threading.Tasks.Extensions, Version=4.2.4.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL"> <Reference Include="System.Core" />
<HintPath>packages\System.Threading.Tasks.Extensions.4.6.3\lib\net462\System.Threading.Tasks.Extensions.dll</HintPath> <Reference Include="System.Formats.Asn1, Version=8.0.0.2, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
</Reference> <HintPath>packages\System.Formats.Asn1.8.0.2\lib\net462\System.Formats.Asn1.dll</HintPath>
<Reference Include="System.Xml.Linq" /> </Reference>
<Reference Include="System.Data.DataSetExtensions" /> <Reference Include="System.IO.Pipelines, Version=10.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<Reference Include="Microsoft.CSharp" /> <HintPath>packages\System.IO.Pipelines.10.0.0\lib\net462\System.IO.Pipelines.dll</HintPath>
<Reference Include="System.Data" /> </Reference>
<Reference Include="System.Deployment" /> <Reference Include="System.Memory, Version=4.0.5.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<Reference Include="System.Drawing" /> <HintPath>packages\System.Memory.4.6.3\lib\net462\System.Memory.dll</HintPath>
<Reference Include="System.Net.Http" /> </Reference>
<Reference Include="System.Windows.Forms" /> <Reference Include="System.Numerics" />
<Reference Include="System.Xml" /> <Reference Include="System.Numerics.Vectors, Version=4.1.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
</ItemGroup> <HintPath>packages\System.Numerics.Vectors.4.6.1\lib\net462\System.Numerics.Vectors.dll</HintPath>
<ItemGroup> </Reference>
<Compile Include="FormConfiguration.cs"> <Reference Include="System.Runtime.CompilerServices.Unsafe, Version=6.0.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<SubType>Form</SubType> <HintPath>packages\System.Runtime.CompilerServices.Unsafe.6.1.2\lib\net462\System.Runtime.CompilerServices.Unsafe.dll</HintPath>
</Compile> </Reference>
<Compile Include="FormConfiguration.Designer.cs"> <Reference Include="System.Text.Encodings.Web, Version=10.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<DependentUpon>FormConfiguration.cs</DependentUpon> <HintPath>packages\System.Text.Encodings.Web.10.0.0\lib\net462\System.Text.Encodings.Web.dll</HintPath>
</Compile> </Reference>
<Compile Include="FormCredential.cs"> <Reference Include="System.Text.Json, Version=10.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<SubType>Form</SubType> <HintPath>packages\System.Text.Json.10.0.0\lib\net462\System.Text.Json.dll</HintPath>
</Compile> </Reference>
<Compile Include="FormCredential.Designer.cs"> <Reference Include="System.Threading.Tasks.Extensions, Version=4.2.4.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<DependentUpon>FormCredential.cs</DependentUpon> <HintPath>packages\System.Threading.Tasks.Extensions.4.6.3\lib\net462\System.Threading.Tasks.Extensions.dll</HintPath>
</Compile> </Reference>
<Compile Include="FormProfile.cs"> <Reference Include="System.Web" />
<SubType>Form</SubType> <Reference Include="System.Xml.Linq" />
</Compile> <Reference Include="System.Data.DataSetExtensions" />
<Compile Include="FormProfile.Designer.cs"> <Reference Include="Microsoft.CSharp" />
<DependentUpon>FormProfile.cs</DependentUpon> <Reference Include="System.Data" />
</Compile> <Reference Include="System.Deployment" />
<Compile Include="Profile.cs" /> <Reference Include="System.Drawing" />
<Compile Include="TastList.cs"> <Reference Include="System.Net.Http" />
<SubType>Form</SubType> <Reference Include="System.Windows.Forms" />
</Compile> <Reference Include="System.Xml" />
<Compile Include="TastList.Designer.cs"> </ItemGroup>
<DependentUpon>TastList.cs</DependentUpon> <ItemGroup>
</Compile> <Compile Include="FormConfiguration.cs">
<Compile Include="Program.cs" /> <SubType>Form</SubType>
<Compile Include="Properties\AssemblyInfo.cs" /> </Compile>
<EmbeddedResource Include="FormConfiguration.resx"> <Compile Include="FormConfiguration.Designer.cs">
<DependentUpon>FormConfiguration.cs</DependentUpon> <DependentUpon>FormConfiguration.cs</DependentUpon>
</EmbeddedResource> </Compile>
<EmbeddedResource Include="FormCredential.resx"> <Compile Include="FormCredential.cs">
<DependentUpon>FormCredential.cs</DependentUpon> <SubType>Form</SubType>
</EmbeddedResource> </Compile>
<EmbeddedResource Include="FormProfile.resx"> <Compile Include="FormCredential.Designer.cs">
<DependentUpon>FormProfile.cs</DependentUpon> <DependentUpon>FormCredential.cs</DependentUpon>
</EmbeddedResource> </Compile>
<EmbeddedResource Include="TastList.resx"> <Compile Include="FormProfile.cs">
<DependentUpon>TastList.cs</DependentUpon> <SubType>Form</SubType>
</EmbeddedResource> </Compile>
<EmbeddedResource Include="Properties\Resources.resx"> <Compile Include="FormProfile.Designer.cs">
<Generator>ResXFileCodeGenerator</Generator> <DependentUpon>FormProfile.cs</DependentUpon>
<LastGenOutput>Resources.Designer.cs</LastGenOutput> </Compile>
<SubType>Designer</SubType> <Compile Include="Profile.cs" />
</EmbeddedResource> <Compile Include="TastList.cs">
<Compile Include="Properties\Resources.Designer.cs"> <SubType>Form</SubType>
<AutoGen>True</AutoGen> </Compile>
<DependentUpon>Resources.resx</DependentUpon> <Compile Include="TastList.Designer.cs">
<DesignTime>True</DesignTime> <DependentUpon>TastList.cs</DependentUpon>
</Compile> </Compile>
<None Include="packages.config" /> <Compile Include="Program.cs" />
<None Include="Properties\DataSources\Profile.datasource" /> <Compile Include="Properties\AssemblyInfo.cs" />
<None Include="Properties\DataSources\Program.datasource" /> <EmbeddedResource Include="FormConfiguration.resx">
<None Include="Properties\Settings.settings"> <DependentUpon>FormConfiguration.cs</DependentUpon>
<Generator>SettingsSingleFileGenerator</Generator> </EmbeddedResource>
<LastGenOutput>Settings.Designer.cs</LastGenOutput> <EmbeddedResource Include="FormCredential.resx">
</None> <DependentUpon>FormCredential.cs</DependentUpon>
<Compile Include="Properties\Settings.Designer.cs"> </EmbeddedResource>
<AutoGen>True</AutoGen> <EmbeddedResource Include="FormProfile.resx">
<DependentUpon>Settings.settings</DependentUpon> <DependentUpon>FormProfile.cs</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput> </EmbeddedResource>
</Compile> <EmbeddedResource Include="TastList.resx">
</ItemGroup> <DependentUpon>TastList.cs</DependentUpon>
<ItemGroup> </EmbeddedResource>
<None Include="App.config" /> <EmbeddedResource Include="Properties\Resources.resx">
</ItemGroup> <Generator>ResXFileCodeGenerator</Generator>
<ItemGroup> <LastGenOutput>Resources.Designer.cs</LastGenOutput>
<BootstrapperPackage Include=".NETFramework,Version=v4.8"> <SubType>Designer</SubType>
<Visible>False</Visible> </EmbeddedResource>
<ProductName>Microsoft .NET Framework 4.8 %28x86 and x64%29</ProductName> <Compile Include="Properties\Resources.Designer.cs">
<Install>true</Install> <AutoGen>True</AutoGen>
</BootstrapperPackage> <DependentUpon>Resources.resx</DependentUpon>
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1"> <DesignTime>True</DesignTime>
<Visible>False</Visible> </Compile>
<ProductName>.NET Framework 3.5 SP1</ProductName> <None Include="log4net.config">
<Install>false</Install> <CopyToOutputDirectory>Always</CopyToOutputDirectory>
</BootstrapperPackage> </None>
</ItemGroup> <None Include="packages.config" />
<ItemGroup> <None Include="Properties\app.manifest" />
<None Include="images.png" /> <None Include="Properties\DataSources\Profile.datasource" />
</ItemGroup> <None Include="Properties\DataSources\Program.datasource" />
<ItemGroup> <None Include="Properties\Settings.settings">
<None Include="unicorn.jpg" /> <Generator>SettingsSingleFileGenerator</Generator>
</ItemGroup> <LastGenOutput>Settings.Designer.cs</LastGenOutput>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> </None>
<Import Project="packages\System.ValueTuple.4.6.1\build\net471\System.ValueTuple.targets" Condition="Exists('packages\System.ValueTuple.4.6.1\build\net471\System.ValueTuple.targets')" /> <Compile Include="Properties\Settings.Designer.cs">
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild"> <AutoGen>True</AutoGen>
<PropertyGroup> <DependentUpon>Settings.settings</DependentUpon>
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText> <DesignTimeSharedInput>True</DesignTimeSharedInput>
</PropertyGroup> </Compile>
<Error Condition="!Exists('packages\System.ValueTuple.4.6.1\build\net471\System.ValueTuple.targets')" Text="$([System.String]::Format('$(ErrorText)', 'packages\System.ValueTuple.4.6.1\build\net471\System.ValueTuple.targets'))" /> </ItemGroup>
</Target> <ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<BootstrapperPackage Include=".NETFramework,Version=v4.8">
<Visible>False</Visible>
<ProductName>Microsoft .NET Framework 4.8 %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>
<None Include="SSH_Test_TemporaryKey.pfx" />
<None Include="unicorn.jpg" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="packages\System.ValueTuple.4.6.1\build\net471\System.ValueTuple.targets" Condition="Exists('packages\System.ValueTuple.4.6.1\build\net471\System.ValueTuple.targets')" />
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
<PropertyGroup>
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
</PropertyGroup>
<Error Condition="!Exists('packages\System.ValueTuple.4.6.1\build\net471\System.ValueTuple.targets')" Text="$([System.String]::Format('$(ErrorText)', 'packages\System.ValueTuple.4.6.1\build\net471\System.ValueTuple.targets'))" />
</Target>
</Project> </Project>

View File

@@ -1,13 +1,16 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup> <PropertyGroup>
<PublishUrlHistory>publish\</PublishUrlHistory> <PublishUrlHistory>D:\Shared\VS\|publish\</PublishUrlHistory>
<InstallUrlHistory /> <InstallUrlHistory />
<SupportUrlHistory /> <SupportUrlHistory />
<UpdateUrlHistory /> <UpdateUrlHistory />
<BootstrapperUrlHistory /> <BootstrapperUrlHistory />
<ErrorReportUrlHistory /> <ErrorReportUrlHistory />
<FallbackCulture>en-US</FallbackCulture> <FallbackCulture>en-US</FallbackCulture>
<VerifyUploadedFiles>false</VerifyUploadedFiles> <VerifyUploadedFiles>false</VerifyUploadedFiles>
</PropertyGroup> </PropertyGroup>
<PropertyGroup>
<EnableSecurityDebugging>false</EnableSecurityDebugging>
</PropertyGroup>
</Project> </Project>

Binary file not shown.

File diff suppressed because it is too large Load Diff