mirror of
https://github.com/cosinekitty/astronomy.git
synced 2026-05-24 16:56:39 -04:00
Now that Microsoft has officially released .NET 6, I have upgraded the C# version of Astronomy Engine to use it. No source code changes were needed. I just bumped the version number in the project files, and targeted .NET 6 in the GitHub Actions continuous integration tests. Fixed some obsolete wording in generate/README.md.
15 lines
407 B
XML
15 lines
407 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\..\source\csharp\astronomy.csproj" />
|
|
<ProjectReference Include="..\demo_helper\demo_helper.csproj" />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|