From abd5db530e2d78dbb3650a189a09c8817e380829 Mon Sep 17 00:00:00 2001 From: Tudor Stanciu Date: Wed, 19 Jan 2022 16:11:35 +0200 Subject: [PATCH] nuget packages --- ProxmoxConnector.sln | 9 +++++++++ dependencies.props | 16 ++++++++++++++++ directory.build.props | 10 ++++++++++ .../ProxmoxConnector.Server.Application.csproj | 9 +++++++++ .../Class1.cs | 8 ++++++++ .../ProxmoxConnector.Server.Domain.Data.csproj | 11 +++++++++++ .../ProxmoxConnector.Server.csproj | 8 +++++++- 7 files changed, 70 insertions(+), 1 deletion(-) create mode 100644 dependencies.props create mode 100644 directory.build.props create mode 100644 src/server/ProxmoxConnector.Server.Domain.Data/Class1.cs create mode 100644 src/server/ProxmoxConnector.Server.Domain.Data/ProxmoxConnector.Server.Domain.Data.csproj diff --git a/ProxmoxConnector.sln b/ProxmoxConnector.sln index 6ad8896..2aaf220 100644 --- a/ProxmoxConnector.sln +++ b/ProxmoxConnector.sln @@ -9,6 +9,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "solution items", "solution ProjectSection(SolutionItems) = preProject .gitattributes = .gitattributes .gitignore = .gitignore + dependencies.props = dependencies.props + directory.build.props = directory.build.props EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "notes", "notes", "{3C571A15-3810-4F6D-8C61-DC97A8428C7A}" @@ -26,6 +28,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ProxmoxConnector.Server.App EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ProxmoxConnector.Server.Domain", "src\server\ProxmoxConnector.Server.Domain\ProxmoxConnector.Server.Domain.csproj", "{57F68716-671A-476C-9F07-E0E86FDE6940}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ProxmoxConnector.Server.Domain.Data", "src\server\ProxmoxConnector.Server.Domain.Data\ProxmoxConnector.Server.Domain.Data.csproj", "{65C2410A-57CA-45A1-9E98-A12633A32A3E}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -48,6 +52,10 @@ Global {57F68716-671A-476C-9F07-E0E86FDE6940}.Debug|Any CPU.Build.0 = Debug|Any CPU {57F68716-671A-476C-9F07-E0E86FDE6940}.Release|Any CPU.ActiveCfg = Release|Any CPU {57F68716-671A-476C-9F07-E0E86FDE6940}.Release|Any CPU.Build.0 = Release|Any CPU + {65C2410A-57CA-45A1-9E98-A12633A32A3E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {65C2410A-57CA-45A1-9E98-A12633A32A3E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {65C2410A-57CA-45A1-9E98-A12633A32A3E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {65C2410A-57CA-45A1-9E98-A12633A32A3E}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -58,6 +66,7 @@ Global {340A176C-AE9F-4F01-A82F-AAAAF140A728} = {2D975A5D-3612-4536-A501-248F6B9A5AC2} {96718232-FFFA-4E3C-B068-53C679B60669} = {2D975A5D-3612-4536-A501-248F6B9A5AC2} {57F68716-671A-476C-9F07-E0E86FDE6940} = {2D975A5D-3612-4536-A501-248F6B9A5AC2} + {65C2410A-57CA-45A1-9E98-A12633A32A3E} = {2D975A5D-3612-4536-A501-248F6B9A5AC2} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {2BE248DF-16B1-42EF-9A34-C3FE5359D418} diff --git a/dependencies.props b/dependencies.props new file mode 100644 index 0000000..e67b266 --- /dev/null +++ b/dependencies.props @@ -0,0 +1,16 @@ + + + 5.0.7 + 5.0.0 + 8.1.1 + 5.0.7 + 4.1.0 + 5.0.0 + 1.0.2 + 1.0.7 + 10.1.1 + 3.3.0 + 5.0.7 + 6.0.0 + + \ No newline at end of file diff --git a/directory.build.props b/directory.build.props new file mode 100644 index 0000000..3be5ef1 --- /dev/null +++ b/directory.build.props @@ -0,0 +1,10 @@ + + + + 1.0.0 + Tudor Stanciu + STA + Proxmox Connector + STA ProxmoxConnector + + \ No newline at end of file diff --git a/src/server/ProxmoxConnector.Server.Application/ProxmoxConnector.Server.Application.csproj b/src/server/ProxmoxConnector.Server.Application/ProxmoxConnector.Server.Application.csproj index f208d30..0825fe9 100644 --- a/src/server/ProxmoxConnector.Server.Application/ProxmoxConnector.Server.Application.csproj +++ b/src/server/ProxmoxConnector.Server.Application/ProxmoxConnector.Server.Application.csproj @@ -4,4 +4,13 @@ net5.0 + + + + + + + + + diff --git a/src/server/ProxmoxConnector.Server.Domain.Data/Class1.cs b/src/server/ProxmoxConnector.Server.Domain.Data/Class1.cs new file mode 100644 index 0000000..a37a8d2 --- /dev/null +++ b/src/server/ProxmoxConnector.Server.Domain.Data/Class1.cs @@ -0,0 +1,8 @@ +using System; + +namespace ProxmoxConnector.Server.Domain.Data +{ + public class Class1 + { + } +} diff --git a/src/server/ProxmoxConnector.Server.Domain.Data/ProxmoxConnector.Server.Domain.Data.csproj b/src/server/ProxmoxConnector.Server.Domain.Data/ProxmoxConnector.Server.Domain.Data.csproj new file mode 100644 index 0000000..796315c --- /dev/null +++ b/src/server/ProxmoxConnector.Server.Domain.Data/ProxmoxConnector.Server.Domain.Data.csproj @@ -0,0 +1,11 @@ + + + + net5.0 + + + + + + + diff --git a/src/server/ProxmoxConnector.Server/ProxmoxConnector.Server.csproj b/src/server/ProxmoxConnector.Server/ProxmoxConnector.Server.csproj index 2884716..c38a043 100644 --- a/src/server/ProxmoxConnector.Server/ProxmoxConnector.Server.csproj +++ b/src/server/ProxmoxConnector.Server/ProxmoxConnector.Server.csproj @@ -5,7 +5,13 @@ - + + + + + + +