mirror of
https://github.com/Stone-Red-Code/HyperbolicDownloader.git
synced 2026-09-07 23:40:52 +02:00
Fix project naming
This commit is contained in:
@@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
|
|||||||
# Visual Studio Version 17
|
# Visual Studio Version 17
|
||||||
VisualStudioVersion = 17.0.32112.339
|
VisualStudioVersion = 17.0.32112.339
|
||||||
MinimumVisualStudioVersion = 10.0.40219.1
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HyperbolicDowloader", "HyperbolicDowloader\HyperbolicDowloader.csproj", "{231393D8-DDBF-4F2F-90F3-BEB96903BE0B}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HyperbolicDownloader", "HyperbolicDownloader\HyperbolicDownloader.csproj", "{7BA90CAF-36A1-4D55-9CE2-E498ECC1B62D}"
|
||||||
EndProject
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
@@ -11,10 +11,10 @@ Global
|
|||||||
Release|Any CPU = Release|Any CPU
|
Release|Any CPU = Release|Any CPU
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
{231393D8-DDBF-4F2F-90F3-BEB96903BE0B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
{7BA90CAF-36A1-4D55-9CE2-E498ECC1B62D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
{231393D8-DDBF-4F2F-90F3-BEB96903BE0B}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{7BA90CAF-36A1-4D55-9CE2-E498ECC1B62D}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{231393D8-DDBF-4F2F-90F3-BEB96903BE0B}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{7BA90CAF-36A1-4D55-9CE2-E498ECC1B62D}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{231393D8-DDBF-4F2F-90F3-BEB96903BE0B}.Release|Any CPU.Build.0 = Release|Any CPU
|
{7BA90CAF-36A1-4D55-9CE2-E498ECC1B62D}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
HideSolutionNode = FALSE
|
HideSolutionNode = FALSE
|
||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
using System.IO.Compression;
|
using System.IO.Compression;
|
||||||
|
|
||||||
namespace HyperbolicDowloader.FileProcessing;
|
namespace HyperbolicDownloader.FileProcessing;
|
||||||
|
|
||||||
internal class FileCompressor
|
internal class FileCompressor
|
||||||
{
|
{
|
||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
using System.Security.Cryptography;
|
using System.Security.Cryptography;
|
||||||
|
|
||||||
namespace HyperbolicDowloader.FileProcessing;
|
namespace HyperbolicDownloader.FileProcessing;
|
||||||
|
|
||||||
internal class FileValidator
|
internal class FileValidator
|
||||||
{
|
{
|
||||||
+1
-1
@@ -5,7 +5,7 @@ using System.Net.NetworkInformation;
|
|||||||
using System.Net.Sockets;
|
using System.Net.Sockets;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
|
|
||||||
namespace HyperbolicDowloader.Networking;
|
namespace HyperbolicDownloader.Networking;
|
||||||
|
|
||||||
internal class BroadcastClient
|
internal class BroadcastClient
|
||||||
{
|
{
|
||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
using System.Net;
|
using System.Net;
|
||||||
|
|
||||||
namespace HyperbolicDowloader.Networking;
|
namespace HyperbolicDownloader.Networking;
|
||||||
|
|
||||||
internal class BroadcastRecivedEventArgs : EventArgs
|
internal class BroadcastRecivedEventArgs : EventArgs
|
||||||
{
|
{
|
||||||
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
namespace HyperbolicDowloader
|
namespace HyperbolicDownloader
|
||||||
{
|
{
|
||||||
internal class DataContainer
|
internal class DataContainer
|
||||||
{
|
{
|
||||||
+2
-2
@@ -1,11 +1,11 @@
|
|||||||
using HyperbolicDowloader.Networking;
|
using HyperbolicDownloader.Networking;
|
||||||
|
|
||||||
using Stone_Red_Utilities.ConsoleExtentions;
|
using Stone_Red_Utilities.ConsoleExtentions;
|
||||||
|
|
||||||
using System.Net.Sockets;
|
using System.Net.Sockets;
|
||||||
using System.Text.Json;
|
using System.Text.Json;
|
||||||
|
|
||||||
namespace HyperbolicDowloader;
|
namespace HyperbolicDownloader;
|
||||||
|
|
||||||
internal class HostsManager
|
internal class HostsManager
|
||||||
{
|
{
|
||||||
+1
-1
@@ -3,7 +3,7 @@ using System.Net.Sockets;
|
|||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Text.Json;
|
using System.Text.Json;
|
||||||
|
|
||||||
namespace HyperbolicDowloader
|
namespace HyperbolicDownloader
|
||||||
{
|
{
|
||||||
internal class MessageRecivedEventArgs<T> : EventArgs
|
internal class MessageRecivedEventArgs<T> : EventArgs
|
||||||
{
|
{
|
||||||
+1
-1
@@ -3,7 +3,7 @@ using System.Net.Sockets;
|
|||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Text.Json;
|
using System.Text.Json;
|
||||||
|
|
||||||
namespace HyperbolicDowloader
|
namespace HyperbolicDownloader
|
||||||
{
|
{
|
||||||
internal class NetworkClient
|
internal class NetworkClient
|
||||||
{
|
{
|
||||||
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
namespace HyperbolicDowloader.Networking;
|
namespace HyperbolicDownloader.Networking;
|
||||||
|
|
||||||
internal class NetworkSocket
|
internal class NetworkSocket
|
||||||
{
|
{
|
||||||
+1
-1
@@ -2,7 +2,7 @@
|
|||||||
using System.Net.NetworkInformation;
|
using System.Net.NetworkInformation;
|
||||||
using System.Net.Sockets;
|
using System.Net.Sockets;
|
||||||
|
|
||||||
namespace HyperbolicDowloader.Networking;
|
namespace HyperbolicDownloader.Networking;
|
||||||
|
|
||||||
internal class NetworkUtilities
|
internal class NetworkUtilities
|
||||||
{
|
{
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
using HyperbolicDowloader.Networking;
|
using HyperbolicDownloader.Networking;
|
||||||
|
|
||||||
using Open.Nat;
|
using Open.Nat;
|
||||||
|
|
||||||
@@ -10,7 +10,7 @@ using System.Net;
|
|||||||
using System.Net.Sockets;
|
using System.Net.Sockets;
|
||||||
using System.Text.Json;
|
using System.Text.Json;
|
||||||
|
|
||||||
namespace HyperbolicDowloader;
|
namespace HyperbolicDownloader;
|
||||||
|
|
||||||
internal class Program
|
internal class Program
|
||||||
{
|
{
|
||||||
@@ -1,11 +1,11 @@
|
|||||||
using HyperbolicDowloader.Networking;
|
using HyperbolicDownloader.Networking;
|
||||||
|
|
||||||
using Stone_Red_Utilities.ConsoleExtentions;
|
using Stone_Red_Utilities.ConsoleExtentions;
|
||||||
|
|
||||||
using System.Net;
|
using System.Net;
|
||||||
using System.Net.Sockets;
|
using System.Net.Sockets;
|
||||||
|
|
||||||
namespace HyperbolicDowloader;
|
namespace HyperbolicDownloader;
|
||||||
|
|
||||||
internal static class Setup
|
internal static class Setup
|
||||||
{
|
{
|
||||||
Reference in New Issue
Block a user