Compare commits

..

No commits in common. "03f52307f28f3f4298b0041a848fc90d78e11994" and "e9ccce6f388ee1c2b3bd2e1c0fd27d51c17521a2" have entirely different histories.

11 changed files with 1 additions and 86 deletions

3
.gitignore vendored
View File

@ -2,5 +2,4 @@ bin/
obj/ obj/
/packages/ /packages/
riderModule.iml riderModule.iml
/_ReSharper.Caches/ /_ReSharper.Caches/
/_dist/

View File

@ -1,21 +0,0 @@
using PSCHelpdesk.Shared.Plugin;
namespace FastBill;
public class FastBill: Contract
{
public string GetName()
{
return "FastBill";
}
public void Configure()
{
}
public List<Type> LoadViews()
{
return new List<Type>();
}
}

View File

@ -1,13 +0,0 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Shared\Shared.csproj" />
</ItemGroup>
</Project>

View File

@ -20,10 +20,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Nextcloud", "Nextcloud\Next
EndProject EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Vendor", "Vendor", "{D45462B2-C09A-4BC6-A8B1-F03C6533B084}" Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Vendor", "Vendor", "{D45462B2-C09A-4BC6-A8B1-F03C6533B084}"
EndProject EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FastBill", "FastBill\FastBill.csproj", "{9BF4219C-6B7F-4F6D-B880-4C5955176439}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PrintshopCreator", "PrintshopCreator\PrintshopCreator.csproj", "{277C8242-E6F4-48AE-AB9C-A154DF9BFD5D}"
EndProject
Global Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU Debug|Any CPU = Debug|Any CPU
@ -66,19 +62,9 @@ Global
{4C34E3F4-718D-4E15-97A2-AE61A4ACEE02}.Debug|Any CPU.Build.0 = Debug|Any CPU {4C34E3F4-718D-4E15-97A2-AE61A4ACEE02}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4C34E3F4-718D-4E15-97A2-AE61A4ACEE02}.Release|Any CPU.ActiveCfg = Release|Any CPU {4C34E3F4-718D-4E15-97A2-AE61A4ACEE02}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4C34E3F4-718D-4E15-97A2-AE61A4ACEE02}.Release|Any CPU.Build.0 = Release|Any CPU {4C34E3F4-718D-4E15-97A2-AE61A4ACEE02}.Release|Any CPU.Build.0 = Release|Any CPU
{9BF4219C-6B7F-4F6D-B880-4C5955176439}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9BF4219C-6B7F-4F6D-B880-4C5955176439}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9BF4219C-6B7F-4F6D-B880-4C5955176439}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9BF4219C-6B7F-4F6D-B880-4C5955176439}.Release|Any CPU.Build.0 = Release|Any CPU
{277C8242-E6F4-48AE-AB9C-A154DF9BFD5D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{277C8242-E6F4-48AE-AB9C-A154DF9BFD5D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{277C8242-E6F4-48AE-AB9C-A154DF9BFD5D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{277C8242-E6F4-48AE-AB9C-A154DF9BFD5D}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection EndGlobalSection
GlobalSection(NestedProjects) = preSolution GlobalSection(NestedProjects) = preSolution
{552272D2-9506-4F9E-9D53-E908E53D9039} = {E7A87869-4D47-4292-BE39-77D36933088C} {552272D2-9506-4F9E-9D53-E908E53D9039} = {E7A87869-4D47-4292-BE39-77D36933088C}
{4C34E3F4-718D-4E15-97A2-AE61A4ACEE02} = {E7A87869-4D47-4292-BE39-77D36933088C} {4C34E3F4-718D-4E15-97A2-AE61A4ACEE02} = {E7A87869-4D47-4292-BE39-77D36933088C}
{9BF4219C-6B7F-4F6D-B880-4C5955176439} = {E7A87869-4D47-4292-BE39-77D36933088C}
{277C8242-E6F4-48AE-AB9C-A154DF9BFD5D} = {E7A87869-4D47-4292-BE39-77D36933088C}
EndGlobalSection EndGlobalSection
EndGlobal EndGlobal

View File

@ -47,8 +47,6 @@
$(SolutionDir)\_dist\hetzner\HetznerServer.dll; $(SolutionDir)\_dist\hetzner\HetznerServer.dll;
$(SolutionDir)\_dist\hetzner\HetznerCloudApi.dll; $(SolutionDir)\_dist\hetzner\HetznerCloudApi.dll;
$(SolutionDir)\_dist\hetzner\Renci.SshNet.dll; $(SolutionDir)\_dist\hetzner\Renci.SshNet.dll;
$(SolutionDir)\_dist\fastbill\FastBill.dll;
$(SolutionDir)\_dist\printshopcreator\PrintshopCreator.dll;
"/> "/>
</ItemGroup> </ItemGroup>

View File

@ -1,21 +0,0 @@
using PSCHelpdesk.Shared.Plugin;
namespace PrintshopCreator;
public class PrintshopCreator: Contract
{
public string GetName()
{
return "PrintshopCreator";
}
public void Configure()
{
}
public List<Type> LoadViews()
{
return new List<Type>();
}
}

View File

@ -1,13 +0,0 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Shared\Shared.csproj" />
</ItemGroup>
</Project>

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.