SplitApp.Shared.Contracts.csproj
430 bytes
| 1 | <Project Sdk="Microsoft.NET.Sdk"> |
|---|---|
| 2 | |
| 3 | <PropertyGroup> |
| 4 | <TargetFramework>net10.0</TargetFramework> |
| 5 | <ImplicitUsings>enable</ImplicitUsings> |
| 6 | <Nullable>enable</Nullable> |
| 7 | </PropertyGroup> |
| 8 | |
| 9 | <ItemGroup> |
| 10 | <PackageReference Include="MediatR.Contracts" Version="2.0.1" /> |
| 11 | </ItemGroup> |
| 12 | |
| 13 | <ItemGroup> |
| 14 | <ProjectReference Include="..\SplitApp.Shared.Kernel\SplitApp.Shared.Kernel.csproj" /> |
| 15 | </ItemGroup> |
| 16 | |
| 17 | </Project> |
| 18 | |