Skip to content

Commit 2c0c4d3

Browse files
Merge pull request #36 from SpiceSharp/development
v3.0.3
2 parents 13c63c1 + 6581aae commit 2c0c4d3

File tree

5 files changed

+10
-11
lines changed

5 files changed

+10
-11
lines changed

.github/workflows/publish-nuget.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
# Steps represent a sequence of tasks that will be executed as part of the job
2020
steps:
2121
- name: Setup MSBuild environment
22-
uses: microsoft/setup-msbuild@v1.0.0
22+
uses: microsoft/setup-msbuild@v1.0.2
2323

2424
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
2525
- uses: actions/checkout@v2

.github/workflows/test-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
# Steps represent a sequence of tasks that will be executed as part of the job
2121
steps:
2222
- name: Setup MSBuild environment
23-
uses: microsoft/setup-msbuild@v1.0.0
23+
uses: microsoft/setup-msbuild@v1.0.2
2424

2525
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
2626
- uses: actions/checkout@v2

SpiceSharpBehavioral/Components/BehavioralComponent.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ public abstract class BehavioralComponent : Entity<BehavioralBindingContext>,
1717
IParameterized<Parameters>
1818
{
1919
private readonly string[] _connections;
20-
21-
20+
2221
/// <summary>
2322
/// Gets the parameter set.
2423
/// </summary>
@@ -94,7 +93,7 @@ public override void CreateBehaviors(ISimulation simulation)
9493
{
9594
var behaviors = new BehaviorContainer(Name);
9695
simulation.EntityBehaviors.Add(behaviors);
97-
DI.Resolve(simulation, this, behaviors);
96+
Entities.DependencyInjection.DI.Resolve(simulation, this, behaviors);
9897
}
9998
}
10099
}

SpiceSharpBehavioral/SpiceSharpBehavioral.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard1.5;netstandard2.0;net45;netcoreapp2.0</TargetFrameworks>
5-
<Version>3.0.1</Version>
4+
<TargetFrameworks>netstandard1.5;netstandard2.0;net45;netcoreapp2.1</TargetFrameworks>
5+
<Version>3.0.3</Version>
66
<Authors>Sven Boulanger</Authors>
77
<Title>Spice#.Behavioral</Title>
88
<Description>Spice#.Behavioral is a library that allows using behavioral components in the circuit simulator Spice#.</Description>
@@ -11,12 +11,12 @@
1111
<RepositoryUrl>https://github.com/SpiceSharp/SpiceSharpBehavioral</RepositoryUrl>
1212
<PackageTags>circuit electronics netlist parser spice simulator simulation ode solver design behavioral modeling</PackageTags>
1313
<PackageIconUrl></PackageIconUrl>
14-
<AssemblyVersion>3.0.1.0</AssemblyVersion>
14+
<AssemblyVersion>3.0.3.0</AssemblyVersion>
1515
<PackageReleaseNotes>Refer to the GitHub release for release notes.</PackageReleaseNotes>
1616
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1717
<Company />
1818
<NeutralLanguage>en</NeutralLanguage>
19-
<FileVersion>3.0.1.0</FileVersion>
19+
<FileVersion>3.0.3.0</FileVersion>
2020
<DebugType>full</DebugType>
2121
<DebugSymbols>true</DebugSymbols>
2222
<PackageLicenseExpression>MIT</PackageLicenseExpression>
@@ -67,7 +67,7 @@
6767

6868
<ItemGroup>
6969
<PackageReference Include="SpiceSharp">
70-
<Version>3.0.1</Version>
70+
<Version>3.0.3</Version>
7171
</PackageReference>
7272
<PackageReference Include="System.Reflection.Emit.Lightweight">
7373
<Version>4.7.0</Version>

SpiceSharpBehavioralTest/SpiceSharpBehavioralTest.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
</ItemGroup>
7272
<ItemGroup>
7373
<PackageReference Include="SpiceSharp">
74-
<Version>3.0.1</Version>
74+
<Version>3.0.3</Version>
7575
</PackageReference>
7676
<PackageReference Include="NUnit">
7777
<Version>3.12.0</Version>

0 commit comments

Comments
 (0)