Rename project namespace

This commit is contained in:
Guilherme Werner 2025-07-04 13:52:48 -03:00
parent 8efcd46e62
commit 79236af76b
24 changed files with 27 additions and 27 deletions

View file

@ -1,9 +1,9 @@
 
Microsoft Visual Studio Solution File, Format Version 12.00 Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17 # Visual Studio Version 17
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tribufu.Proxmox", "src\Tribufu.Proxmox\Tribufu.Proxmox.csproj", "{A2756937-8D07-4164-9CB7-2C94E9FE0A08}" Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ProxmoxSharp", "src\ProxmoxSharp\ProxmoxSharp.csproj", "{A2756937-8D07-4164-9CB7-2C94E9FE0A08}"
EndProject EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tribufu.Proxmox.Tests", "src\Tribufu.Proxmox.Tests\Tribufu.Proxmox.Tests.csproj", "{0A59E867-1A89-4E07-ABE7-E7DC2FEE9317}" Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ProxmoxSharp.Tests", "src\ProxmoxSharp.Tests\ProxmoxSharp.Tests.csproj", "{0A59E867-1A89-4E07-ABE7-E7DC2FEE9317}"
EndProject EndProject
Global Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution GlobalSection(SolutionConfigurationPlatforms) = preSolution

View file

@ -3,7 +3,7 @@
using dotenv.net; using dotenv.net;
namespace Tribufu.Proxmox.Tests namespace ProxmoxSharp.Tests
{ {
public static class Program public static class Program
{ {

View file

@ -9,6 +9,6 @@
<PackageReference Include="dotenv.net" /> <PackageReference Include="dotenv.net" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ProjectReference Include="..\Tribufu.Proxmox\Tribufu.Proxmox.csproj" /> <ProjectReference Include="..\ProxmoxSharp\ProxmoxSharp.csproj" />
</ItemGroup> </ItemGroup>
</Project> </Project>

View file

@ -1,11 +1,11 @@
// Copyright (c) Tribufu. All Rights Reserved. // Copyright (c) Tribufu. All Rights Reserved.
// SPDX-License-Identifier: MIT // SPDX-License-Identifier: MIT
using ProxmoxSharp.Models;
using System.Collections.Generic; using System.Collections.Generic;
using System.Threading.Tasks; using System.Threading.Tasks;
using Tribufu.Proxmox.Models;
namespace Tribufu.Proxmox.Interfaces namespace ProxmoxSharp.Interfaces
{ {
public interface IProxmoxClient public interface IProxmoxClient
{ {

View file

@ -3,7 +3,7 @@
using Newtonsoft.Json; using Newtonsoft.Json;
namespace Tribufu.Proxmox.Models namespace ProxmoxSharp.Models
{ {
public class ProxmoxBalloonInfo public class ProxmoxBalloonInfo
{ {

View file

@ -4,7 +4,7 @@
using Newtonsoft.Json; using Newtonsoft.Json;
using System.Collections.Generic; using System.Collections.Generic;
namespace Tribufu.Proxmox.Models namespace ProxmoxSharp.Models
{ {
public class ProxmoxBlockStats public class ProxmoxBlockStats
{ {

View file

@ -3,7 +3,7 @@
using Newtonsoft.Json; using Newtonsoft.Json;
namespace Tribufu.Proxmox.Models namespace ProxmoxSharp.Models
{ {
public class ProxmoxBootInfo public class ProxmoxBootInfo
{ {

View file

@ -3,7 +3,7 @@
using Newtonsoft.Json; using Newtonsoft.Json;
namespace Tribufu.Proxmox.Models namespace ProxmoxSharp.Models
{ {
public class ProxmoxContainer public class ProxmoxContainer
{ {

View file

@ -3,7 +3,7 @@
using Newtonsoft.Json; using Newtonsoft.Json;
namespace Tribufu.Proxmox.Models namespace ProxmoxSharp.Models
{ {
public class ProxmoxCpuInfo public class ProxmoxCpuInfo
{ {

View file

@ -3,7 +3,7 @@
using Newtonsoft.Json; using Newtonsoft.Json;
namespace Tribufu.Proxmox.Models namespace ProxmoxSharp.Models
{ {
public class ProxmoxHighAvailability public class ProxmoxHighAvailability
{ {

View file

@ -3,7 +3,7 @@
using Newtonsoft.Json; using Newtonsoft.Json;
namespace Tribufu.Proxmox.Models namespace ProxmoxSharp.Models
{ {
public class ProxmoxKernelInfo public class ProxmoxKernelInfo
{ {

View file

@ -3,7 +3,7 @@
using Newtonsoft.Json; using Newtonsoft.Json;
namespace Tribufu.Proxmox.Models namespace ProxmoxSharp.Models
{ {
public class ProxmoxKsmInfo public class ProxmoxKsmInfo
{ {

View file

@ -3,7 +3,7 @@
using Newtonsoft.Json; using Newtonsoft.Json;
namespace Tribufu.Proxmox.Models namespace ProxmoxSharp.Models
{ {
public class ProxmoxMemoryStats public class ProxmoxMemoryStats
{ {

View file

@ -3,7 +3,7 @@
using Newtonsoft.Json; using Newtonsoft.Json;
namespace Tribufu.Proxmox.Models namespace ProxmoxSharp.Models
{ {
public class ProxmoxNicStats public class ProxmoxNicStats
{ {

View file

@ -3,7 +3,7 @@
using Newtonsoft.Json; using Newtonsoft.Json;
namespace Tribufu.Proxmox.Models namespace ProxmoxSharp.Models
{ {
public class ProxmoxNode public class ProxmoxNode
{ {

View file

@ -3,7 +3,7 @@
using Newtonsoft.Json; using Newtonsoft.Json;
namespace Tribufu.Proxmox.Models namespace ProxmoxSharp.Models
{ {
public class ProxmoxNodeStatus public class ProxmoxNodeStatus
{ {

View file

@ -3,7 +3,7 @@
using Newtonsoft.Json; using Newtonsoft.Json;
namespace Tribufu.Proxmox.Models namespace ProxmoxSharp.Models
{ {
public class ProxmoxStorageStats public class ProxmoxStorageStats
{ {

View file

@ -3,7 +3,7 @@
using Newtonsoft.Json; using Newtonsoft.Json;
namespace Tribufu.Proxmox.Models namespace ProxmoxSharp.Models
{ {
public class ProxmoxSupportInfo public class ProxmoxSupportInfo
{ {

View file

@ -3,7 +3,7 @@
using Newtonsoft.Json; using Newtonsoft.Json;
namespace Tribufu.Proxmox.Models namespace ProxmoxSharp.Models
{ {
public class ProxmoxVirtualMachine public class ProxmoxVirtualMachine
{ {

View file

@ -4,7 +4,7 @@
using Newtonsoft.Json; using Newtonsoft.Json;
using System.Collections.Generic; using System.Collections.Generic;
namespace Tribufu.Proxmox.Models namespace ProxmoxSharp.Models
{ {
public class ProxmoxVirtualMachineStatus public class ProxmoxVirtualMachineStatus
{ {

View file

@ -2,14 +2,14 @@
// SPDX-License-Identifier: MIT // SPDX-License-Identifier: MIT
using Newtonsoft.Json.Linq; using Newtonsoft.Json.Linq;
using ProxmoxSharp.Interfaces;
using ProxmoxSharp.Models;
using RestSharp; using RestSharp;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Threading.Tasks; using System.Threading.Tasks;
using Tribufu.Proxmox.Interfaces;
using Tribufu.Proxmox.Models;
namespace Tribufu.Proxmox namespace ProxmoxSharp
{ {
public class ProxmoxClient : IProxmoxClient public class ProxmoxClient : IProxmoxClient
{ {

View file

@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<PackageId>Tribufu.Proxmox</PackageId> <PackageId>ProxmoxSharp</PackageId>
<Description>Proxmox API Client</Description> <Description>Proxmox API Client</Description>
<PackageReadmeFile>README.md</PackageReadmeFile> <PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup> </PropertyGroup>

View file

@ -0,0 +1 @@
../../README.md

View file

@ -1 +0,0 @@
../../README.md