Skip to content

Commit

Permalink
Merge pull request #122 from tzurielweisberg/tzurielweisberg-patch-49
Browse files Browse the repository at this point in the history
Create file.csproj
  • Loading branch information
tzurielweisberg authored Oct 15, 2024
2 parents 03f3710 + d400869 commit adf356a
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 adf356a

Please sign in to comment.