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
# 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
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
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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