1
0
Fork 0
mirror of https://github.com/miawinter98/just-short-it.git synced 2024-09-20 09:48:59 +00:00
just-short-it/JustShortIt.csproj

26 lines
768 B
XML
Raw Normal View History

2023-04-15 13:40:46 +00:00
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
<DockerfileContext>.</DockerfileContext>
</PropertyGroup>
2023-04-17 20:30:07 +00:00
<ItemGroup>
<Content Remove="compilerconfig.json" />
</ItemGroup>
<ItemGroup>
<None Include="compilerconfig.json" />
</ItemGroup>
2023-04-15 13:40:46 +00:00
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Caching.StackExchangeRedis" Version="7.0.5" />
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.17.2" />
<PackageReference Include="StackExchange.Redis" Version="2.6.104" />
</ItemGroup>
</Project>