Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add project Loom.EventSourcing.Materialization #55

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<Nullable>enable</Nullable>
<CodeAnalysisRuleSet>..\RuleSets\Loom.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>

<PropertyGroup>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>Loom.EventSourcing.Materialization</PackageId>
<Description>Support read model materialization for event sourcing.</Description>
<Version>0.20.0</Version>
<Authors>Gyuwon</Authors>
<Copyright>Copyright (c) 2021 Yi Gyuwon</Copyright>
<PackageProjectUrl>https://github.com/loom/loom-dotnet</PackageProjectUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="5.0.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.354">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Loom.EventSourcing.Contracts\Loom.EventSourcing.Contracts.csproj" />
</ItemGroup>

</Project>
1 change: 1 addition & 0 deletions source/Loom.Tests/Loom.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
<ProjectReference Include="..\Loom.DataAnnotations\Loom.DataAnnotations.csproj" />
<ProjectReference Include="..\Loom.EventSourcing.Azure\Loom.EventSourcing.Azure.csproj" />
<ProjectReference Include="..\Loom.EventSourcing.EntityFrameworkCore\Loom.EventSourcing.EntityFrameworkCore.csproj" />
<ProjectReference Include="..\Loom.EventSourcing.Materialization\Loom.EventSourcing.Materialization.csproj" />
<ProjectReference Include="..\Loom.Json\Loom.Json.csproj" />
<ProjectReference Include="..\Loom.Messaging.Azure\Loom.Messaging.Azure.csproj" />
<ProjectReference Include="..\Loom.Tests.Dependency\Loom.Tests.Dependency.csproj" />
Expand Down
6 changes: 6 additions & 0 deletions source/Loom.sln
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
..\.editorconfig = ..\.editorconfig
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Loom.EventSourcing.Materialization", "Loom.EventSourcing.Materialization\Loom.EventSourcing.Materialization.csproj", "{7D67B343-82CE-42E8-BB70-B69797C796B8}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -92,6 +94,10 @@ Global
{592BE1DF-0376-4608-88F9-459076A8DF42}.Debug|Any CPU.Build.0 = Debug|Any CPU
{592BE1DF-0376-4608-88F9-459076A8DF42}.Release|Any CPU.ActiveCfg = Release|Any CPU
{592BE1DF-0376-4608-88F9-459076A8DF42}.Release|Any CPU.Build.0 = Release|Any CPU
{7D67B343-82CE-42E8-BB70-B69797C796B8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7D67B343-82CE-42E8-BB70-B69797C796B8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7D67B343-82CE-42E8-BB70-B69797C796B8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7D67B343-82CE-42E8-BB70-B69797C796B8}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down