mirror of
https://github.com/cosinekitty/astronomy.git
synced 2026-08-02 02:46:53 -04:00
Dotnet core 2.2 is no longer officially supported by Microsoft. The current LTS is 3.1, so I'm upgrading to it.
14 lines
344 B
XML
14 lines
344 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\..\source\csharp\astronomy.csproj" />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|