Compare commits

..

2 Commits

Author SHA1 Message Date
03f52307f2 Backup 2024-11-14 21:51:24 +01:00
94a95c51bc Gitignore 2024-11-14 19:50:15 +01:00
11 changed files with 86 additions and 1 deletions

1
.gitignore vendored
View File

@ -3,3 +3,4 @@ obj/
/packages/
riderModule.iml
/_ReSharper.Caches/
/_dist/

21
FastBill/FastBill.cs Normal file
View File

@ -0,0 +1,21 @@
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>();
}
}

13
FastBill/FastBill.csproj Normal file
View File

@ -0,0 +1,13 @@
<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,6 +20,10 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Nextcloud", "Nextcloud\Next
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Vendor", "Vendor", "{D45462B2-C09A-4BC6-A8B1-F03C6533B084}"
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
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@ -62,9 +66,19 @@ Global
{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.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
GlobalSection(NestedProjects) = preSolution
{552272D2-9506-4F9E-9D53-E908E53D9039} = {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
EndGlobal

View File

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

View File

@ -0,0 +1,21 @@
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

@ -0,0 +1,13 @@
<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.