1 files changed, 26 insertions, 0 deletions
diff --git a/LibMatrix.EventTypes.Spec/LibMatrix.EventTypes.Spec.csproj b/LibMatrix.EventTypes.Spec/LibMatrix.EventTypes.Spec.csproj
new file mode 100644
index 0000000..5bfaedf
--- /dev/null
+++ b/LibMatrix.EventTypes.Spec/LibMatrix.EventTypes.Spec.csproj
@@ -0,0 +1,26 @@
+<Project Sdk="Microsoft.NET.Sdk">
+
+ <PropertyGroup>
+ <TargetFramework>net8.0</TargetFramework>
+ <ImplicitUsings>enable</ImplicitUsings>
+ <Nullable>enable</Nullable>
+ <TrimEnabled>true</TrimEnabled>
+ <PublishTrimmed>true</PublishTrimmed>
+ <TrimMode>full</TrimMode>
+
+
+ <Optimize>true</Optimize>
+ <RunAOTCompilation>true</RunAOTCompilation>
+ <PublishTrimmed>true</PublishTrimmed>
+ <PublishReadyToRun>true</PublishReadyToRun>
+ <PublishSingleFile>true</PublishSingleFile>
+ <PublishReadyToRunShowWarnings>true</PublishReadyToRunShowWarnings>
+ <PublishTrimmedShowLinkerSizeComparison>true</PublishTrimmedShowLinkerSizeComparison>
+ <PublishTrimmedShowLinkerSizeComparisonWarnings>true</PublishTrimmedShowLinkerSizeComparisonWarnings>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <ProjectReference Include="..\LibMatrix.EventTypes.Abstractions\LibMatrix.EventTypes.Abstractions.csproj" />
+ </ItemGroup>
+
+</Project>
|