From d25d5d5c8ec090e6eb2baa25c28b4a1a144c7c1d Mon Sep 17 00:00:00 2001 From: Adriano Serighelli Date: Thu, 11 Sep 2025 15:54:04 -0300 Subject: [PATCH] Git ini --- .../BackupPipefy.Application.csproj | 14 ++++++++++ BackupPipefy.Application/Class1.cs | 6 +++++ .../BackupPipefy.Domain.csproj | 9 +++++++ BackupPipefy.Domain/Class1.cs | 6 +++++ .../BackupPipefy.Infrastructure.csproj | 17 ++++++++++++ BackupPipefy.Infrastructure/Class1.cs | 6 +++++ .../BackupPipefy.Presentation.csproj | 14 ++++++++++ BackupPipefy.Presentation/Program.cs | 2 ++ BackupPipefy.Tests/BackupPipefy.Tests.csproj | 26 +++++++++++++++++++ BackupPipefy.Tests/UnitTest1.cs | 10 +++++++ 10 files changed, 110 insertions(+) create mode 100644 BackupPipefy.Application/BackupPipefy.Application.csproj create mode 100644 BackupPipefy.Application/Class1.cs create mode 100644 BackupPipefy.Domain/BackupPipefy.Domain.csproj create mode 100644 BackupPipefy.Domain/Class1.cs create mode 100644 BackupPipefy.Infrastructure/BackupPipefy.Infrastructure.csproj create mode 100644 BackupPipefy.Infrastructure/Class1.cs create mode 100644 BackupPipefy.Presentation/BackupPipefy.Presentation.csproj create mode 100644 BackupPipefy.Presentation/Program.cs create mode 100644 BackupPipefy.Tests/BackupPipefy.Tests.csproj create mode 100644 BackupPipefy.Tests/UnitTest1.cs diff --git a/BackupPipefy.Application/BackupPipefy.Application.csproj b/BackupPipefy.Application/BackupPipefy.Application.csproj new file mode 100644 index 0000000..efd8709 --- /dev/null +++ b/BackupPipefy.Application/BackupPipefy.Application.csproj @@ -0,0 +1,14 @@ + + + + + + + + + net9.0 + enable + enable + + + diff --git a/BackupPipefy.Application/Class1.cs b/BackupPipefy.Application/Class1.cs new file mode 100644 index 0000000..1cdb204 --- /dev/null +++ b/BackupPipefy.Application/Class1.cs @@ -0,0 +1,6 @@ +namespace BackupPipefy.Application; + +public class Class1 +{ + +} diff --git a/BackupPipefy.Domain/BackupPipefy.Domain.csproj b/BackupPipefy.Domain/BackupPipefy.Domain.csproj new file mode 100644 index 0000000..125f4c9 --- /dev/null +++ b/BackupPipefy.Domain/BackupPipefy.Domain.csproj @@ -0,0 +1,9 @@ + + + + net9.0 + enable + enable + + + diff --git a/BackupPipefy.Domain/Class1.cs b/BackupPipefy.Domain/Class1.cs new file mode 100644 index 0000000..de9f003 --- /dev/null +++ b/BackupPipefy.Domain/Class1.cs @@ -0,0 +1,6 @@ +namespace BackupPipefy.Domain; + +public class Class1 +{ + +} diff --git a/BackupPipefy.Infrastructure/BackupPipefy.Infrastructure.csproj b/BackupPipefy.Infrastructure/BackupPipefy.Infrastructure.csproj new file mode 100644 index 0000000..6173284 --- /dev/null +++ b/BackupPipefy.Infrastructure/BackupPipefy.Infrastructure.csproj @@ -0,0 +1,17 @@ + + + + + + + + + + + + net9.0 + enable + enable + + + diff --git a/BackupPipefy.Infrastructure/Class1.cs b/BackupPipefy.Infrastructure/Class1.cs new file mode 100644 index 0000000..a923507 --- /dev/null +++ b/BackupPipefy.Infrastructure/Class1.cs @@ -0,0 +1,6 @@ +namespace BackupPipefy.Infrastructure; + +public class Class1 +{ + +} diff --git a/BackupPipefy.Presentation/BackupPipefy.Presentation.csproj b/BackupPipefy.Presentation/BackupPipefy.Presentation.csproj new file mode 100644 index 0000000..a0ee35e --- /dev/null +++ b/BackupPipefy.Presentation/BackupPipefy.Presentation.csproj @@ -0,0 +1,14 @@ + + + + + + + + Exe + net9.0 + enable + enable + + + diff --git a/BackupPipefy.Presentation/Program.cs b/BackupPipefy.Presentation/Program.cs new file mode 100644 index 0000000..3751555 --- /dev/null +++ b/BackupPipefy.Presentation/Program.cs @@ -0,0 +1,2 @@ +// See https://aka.ms/new-console-template for more information +Console.WriteLine("Hello, World!"); diff --git a/BackupPipefy.Tests/BackupPipefy.Tests.csproj b/BackupPipefy.Tests/BackupPipefy.Tests.csproj new file mode 100644 index 0000000..e8b1e7e --- /dev/null +++ b/BackupPipefy.Tests/BackupPipefy.Tests.csproj @@ -0,0 +1,26 @@ + + + + net9.0 + enable + enable + false + + + + + + + + + + + + + + + + + + + diff --git a/BackupPipefy.Tests/UnitTest1.cs b/BackupPipefy.Tests/UnitTest1.cs new file mode 100644 index 0000000..9d2ece1 --- /dev/null +++ b/BackupPipefy.Tests/UnitTest1.cs @@ -0,0 +1,10 @@ +namespace BackupPipefy.Tests; + +public class UnitTest1 +{ + [Fact] + public void Test1() + { + + } +}