Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ jobs:
run:
working-directory: ./IO.Astrodynamics.Net
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
dotnet-version: '10.0.x'
- name: Restore dependencies
run: dotnet restore
- name: Build
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ jobs:
working-directory: ./IO.Astrodynamics.Net

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
dotnet-version: '10.0.x'
- name: Restore dependencies
run: dotnet restore
# - name: Build
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFrameworks>net8.0;net10.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<TargetFrameworks>net8.0;net10.0</TargetFrameworks>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>disable</Nullable>
<AssemblyVersion>0.0.1</AssemblyVersion>
<FileVersion>0.0.1</FileVersion>
<PackAsTool>true</PackAsTool>
<ToolCommandName>astro</ToolCommandName>
<Version>0.7.0.4</Version>
<Version>0.7.1.0</Version>
<Title>Astrodynamics command line interface</Title>
<Authors>Sylvain Guillet</Authors>
<Description>This CLI allows end user to exploit IO.Astrodynamics framework </Description>
Expand All @@ -29,7 +29,7 @@
</ItemGroup>

<ItemGroup>
<None Update="dragonfly-dark-trans.png">
<None Include="dragonfly-dark-trans.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<TargetFrameworks>net8.0;net10.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<IsPackable>false</IsPackable>

<TargetFramework>net8.0</TargetFramework>
<TargetFrameworks>net8.0;net10.0</TargetFrameworks>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<AssemblyName>IO.Astrodynamics.Net</AssemblyName>
<Company>IO</Company>
<LangVersion>12</LangVersion>
<TargetFramework>net8.0</TargetFramework>
<TargetFrameworks>net8.0;net10.0</TargetFrameworks>

</PropertyGroup>
<PropertyGroup>
Expand Down
13 changes: 10 additions & 3 deletions IO.Astrodynamics.Net/IO.Astrodynamics/IO.Astrodynamics.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<id>IO.Astrodynamics</id>
<authors>Sylvain Guillet</authors>
<copyright>Sylvain Guillet</copyright>
<version>7.0.4</version>
<version>7.1.0</version>
<title>Astrodynamics framework</title>
<icon>images\dragonfly-dark-trans.png</icon>
<readme>docs\README.md</readme>
Expand All @@ -14,14 +14,20 @@
<dependencies>
<group targetFramework="net8.0">
<dependency id="AutoMapper" version="12.0.1"/>
</group>
<group targetFramework="net10.0">
<dependency id="AutoMapper" version="12.0.1"/>
</group>
</dependencies>
<tags>astrodynamics aerospace orbital mechanics spice space physics</tags>
</metadata>
<files>
<!-- binding libraries -->
<!-- binding libraries .NET 8.0 -->
<file src="bin/Release/net8.0/IO.Astrodynamics.Net.dll" target="lib/net8.0"/>
<file src="resources/One_Sgp4.dll" target="lib/net8.0"/>
<!-- binding libraries .NET 10.0 -->
<file src="bin/Release/net10.0/IO.Astrodynamics.Net.dll" target="lib/net10.0"/>
<file src="resources/One_Sgp4.dll" target="lib/net10.0"/>
<!-- native libraries -->
<file src="resources/IO.Astrodynamics.dll" target="runtimes/windows10-x64"/>
<file src="resources/IO.Astrodynamics.lib" target="runtimes/windows10-x64"/>
Expand All @@ -31,4 +37,5 @@
<file src="resources/dragonfly-dark-trans.png" target="images/"/>
<file src="../../README.md" target="docs/"/>
</files>
</package>
</package>

7 changes: 7 additions & 0 deletions IO.Astrodynamics.Net/global.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"sdk": {
"version": "10.0.0",
"rollForward": "latestMajor",
"allowPrerelease": false
}
}