mirror of
https://github.com/dockersamples/example-voting-app.git
synced 2026-02-14 18:29:51 +00:00
* Remove Java project from worker * Update .NET Core and remove old dotnet codebase from worker service * Remove Windows-based Compose files and info from README * Update .NET to 7.0
14 lines
389 B
XML
14 lines
389 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="StackExchange.Redis" Version="2.2.4" />
|
|
<PackageReference Include="Npgsql" Version="4.1.9" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
|
</ItemGroup>
|
|
|
|
</Project> |