Skip to content

Commit

Permalink
Create file.csproj
Browse files Browse the repository at this point in the history
  • Loading branch information
tzurielweisberg authored Oct 15, 2024
1 parent 25f78c2 commit 74d8543
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions file.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<RootNamespace>IntroductionToEventSourcing.GettingStateFromEvents</RootNamespace>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="FluentAssertions" Version="6.7.0" />
<PackageReference Include="Marten" Version="5.10.1" />
<PackageReference Include="System.Net.Http" Version="4.3.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.2" />
<PackageReference Include="xunit" Version="2.4.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="3.1.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>

</Project>

0 comments on commit 74d8543

Please sign in to comment.