WeatherDashboard/WeatherDashboard.Console/WeatherDashboard.Console.csproj

19 lines
446 B
XML
Raw Normal View History

2023-02-09 02:30:14 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
2023-02-10 03:33:02 +00:00
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
</ItemGroup>
2023-02-09 02:30:14 +00:00
<ItemGroup>
<ProjectReference Include="..\WeatherDashboard\WeatherDashboard.csproj" />
</ItemGroup>
</Project>