Skip to content

Commit 37cefa9

Browse files
Merge pull request #73 from SpiceSharp/development
Update to Spice# 3.2.0
2 parents 2c446dd + d40f7b7 commit 37cefa9

35 files changed

Lines changed: 4556 additions & 1025 deletions

.github/workflows/publish-nuget.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,16 @@ jobs:
1515
- name: Setup dotnet tooling
1616
uses: actions/setup-dotnet@master
1717
with:
18-
dotnet-version: '5.0.100'
18+
dotnet-version: '8.0.x'
1919

2020
- name: Restore dependencies
2121
run: dotnet restore
2222

23-
- name: Compile Spice#
23+
- name: Compile Spice#.Behavioral
2424
run: dotnet build SpiceSharpBehavioral\SpiceSharpBehavioral.csproj --configuration Release --no-restore
2525

2626
- name: Publish to NuGet
2727
env:
2828
APIKEY: ${{ secrets.NUGET_APIKEY }}
29-
run: dotnet nuget push .\SpiceSharpBehavioral\bin\Release\SpiceSharpBehavioral.*.nupkg -k $env:APIKEY -s "https://api.nuget.org/v3/index.json"
30-
29+
run: dotnet nuget push ".\build\bin\SpiceSharpBehavioral\SpiceSharpBehavioral.*.nupkg" -k $env:APIKEY -s "https://api.nuget.org/v3/index.json"
30+

.github/workflows/test-linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ jobs:
1919
- name: Setup dotnet tooling
2020
uses: actions/setup-dotnet@master
2121
with:
22-
dotnet-version: '5.0.100'
22+
dotnet-version: '8.0.x'
2323

2424
- name: Restore dependencies
2525
run: dotnet restore
2626

2727
- name: Compile Spice#.Behavioral
2828
run: dotnet build SpiceSharpBehavioral/SpiceSharpBehavioral.csproj --configuration Debug --no-restore
2929

30-
- name: Compile Spice#.Behavioral.Test
30+
- name: Compile Spice#.Behavioral.Tests
3131
run: dotnet test SpiceSharpBehavioralTest/SpiceSharpBehavioralTest.csproj --configuration Debug --no-restore

.github/workflows/test-macos.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ jobs:
1919
- name: Setup dotnet tooling
2020
uses: actions/setup-dotnet@master
2121
with:
22-
dotnet-version: '5.0.100'
22+
dotnet-version: '8.0.x'
2323

2424
- name: Restore dependencies
2525
run: dotnet restore
2626

2727
- name: Compile Spice#.Behavioral
28-
run: dotnet build SpiceSharpbehavioral/SpiceSharpBehavioral.csproj --configuration Debug --no-restore
28+
run: dotnet build SpiceSharpBehavioral/SpiceSharpBehavioral.csproj --configuration Debug --no-restore
2929

30-
- name: Compile Spice#.Behavioral.Test
30+
- name: Compile Spice#.Behavioral.Tests
3131
run: dotnet test SpiceSharpBehavioralTest/SpiceSharpBehavioralTest.csproj --configuration Debug --no-restore

.github/workflows/test-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Setup dotnet tooling
2020
uses: actions/setup-dotnet@master
2121
with:
22-
dotnet-version: '5.0.100'
22+
dotnet-version: '8.0.x'
2323

2424
- name: Restore dependencies
2525
run: dotnet restore

Benchmark/App.config

Lines changed: 0 additions & 6 deletions
This file was deleted.

Benchmark/Benchmark.csproj

Lines changed: 0 additions & 61 deletions
This file was deleted.

Benchmark/BenchmarkBehavioralVsParser.cs

Lines changed: 0 additions & 109 deletions
This file was deleted.

Benchmark/Program.cs

Lines changed: 0 additions & 13 deletions
This file was deleted.

Benchmark/Properties/AssemblyInfo.cs

Lines changed: 0 additions & 36 deletions
This file was deleted.

Directory.Build.props

Lines changed: 43 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,47 @@
1-
<Project>
1+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
3+
<!-- Directories -->
24
<PropertyGroup>
5+
<RepoRoot>$(MSBuildThisFileDirectory)</RepoRoot>
6+
<UserDocsDir>$(RepoRoot)docs/</UserDocsDir>
7+
<BuildDir>$(RepoRoot)build\</BuildDir>
8+
<DocPath>$(BuildDir)doc\</DocPath>
9+
</PropertyGroup>
10+
11+
<!-- Build info -->
12+
<PropertyGroup>
13+
<TargetFramework>netstandard2.0</TargetFramework>
14+
<NeutralLanguage>en</NeutralLanguage>
15+
<DebugType>full</DebugType>
16+
<DebugSymbols>true</DebugSymbols>
17+
<LangVersion>latest</LangVersion>
18+
<OutputPath>$(BuildDir)bin\$(MSBuildProjectName)\</OutputPath>
19+
<BaseIntermediateOutputPath>$(BuildDir)obj\$(MSBuildProjectName)\</BaseIntermediateOutputPath>
20+
<DocumentationFile>$(DocPath)$(MSBuildProjectName).xml</DocumentationFile>
21+
</PropertyGroup>
22+
23+
<!-- Assembly info -->
24+
<PropertyGroup>
25+
<Authors>Sven Boulanger</Authors>
326
<GenerateDocumentationFile>true</GenerateDocumentationFile>
27+
<Title>Spice#</Title>
28+
<Company>SpiceSharp</Company>
29+
</PropertyGroup>
30+
31+
<!-- NuGet package info -->
32+
<PropertyGroup>
33+
<PackageProjectUrl>https://github.com/SpiceSharp/SpiceSharp</PackageProjectUrl>
34+
<RepositoryUrl>https://github.com/SpiceSharp/SpiceSharp</RepositoryUrl>
35+
<PackageTags>circuit electronics netlist spice simulator simulation ode solver design</PackageTags>
36+
<PackageReleaseNotes>Refer to the GitHub release for release notes.</PackageReleaseNotes>
37+
<PackageIcon>logo_full.png</PackageIcon>
38+
<PackageReadmeFile>README.md</PackageReadmeFile>
39+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
40+
<RepositoryType>git</RepositoryType>
41+
<PackageTags>circuit electronics netlist parser spice simulator simulation ode solver design</PackageTags>
442
</PropertyGroup>
43+
<ItemGroup>
44+
<None Include="$(UserDocsDir)api/images/logo_full.png" Pack="true" Visible="false" PackagePath="" />
45+
<None Include="$(RepoRoot)README.md" Pack="true" Visible="false" PackagePath="" />
46+
</ItemGroup>
547
</Project>

0 commit comments

Comments
 (0)