File tree 5 files changed +8
-8
lines changed
examples/WinFormsAppSample
5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 18
18
- name : Download DSS C-API binaries
19
19
run : bash scripts/download_native_libs.sh
20
20
- name : Setup .NET
21
- uses : actions/setup-dotnet@v2
21
+ uses : actions/setup-dotnet@v3
22
22
with :
23
23
dotnet-version : 6.0.x
24
24
- name : Restore dependencies
30
30
# - name: Test --- TODO!
31
31
# run: dotnet test --no-build --verbosity normal
32
32
- name : ' Upload artifacts'
33
- uses : " actions/upload-artifact@v2 "
33
+ uses : " actions/upload-artifact@v3 "
34
34
with :
35
35
name : ' packages'
36
36
path : ' ${{ github.workspace }}/bin/Release/*.nupkg'
Original file line number Diff line number Diff line change 9
9
<NoWarn >1591</NoWarn >
10
10
<PlatformTarget >x64</PlatformTarget >
11
11
<Authors >Paulo Meira, DSS-Extensions contributors</Authors >
12
- <PackageVersion >0.13.1 </PackageVersion >
12
+ <PackageVersion >0.13.2 </PackageVersion >
13
13
<Title >DSS Sharp</Title >
14
14
<Description >
15
15
DSS Sharp is a C# wrapper to the native DSS C-API library, a multiplatform multiarchitecture implementation of EPRI's OpenDSS engine.
22
22
</Description >
23
23
<PackageId >dss_sharp</PackageId >
24
24
<license >BSD-3-Clause AND LGPL</license >
25
- <AssemblyVersion >0.13.1 .0</AssemblyVersion >
26
- <FileVersion >0.13.1 .0</FileVersion >
25
+ <AssemblyVersion >0.13.2 .0</AssemblyVersion >
26
+ <FileVersion >0.13.2 .0</FileVersion >
27
27
<PackageProjectUrl >https://github.com/dss-extensions/dss_sharp/</PackageProjectUrl >
28
28
<PackageTags >dss;opendss;linux;windows;macos;dss-extensions;powerflow;distribution;electric;simulator</PackageTags >
29
29
<PackageIcon >docs/images/dss_sharp.png</PackageIcon >
Original file line number Diff line number Diff line change 9
9
</PropertyGroup >
10
10
11
11
<ItemGroup >
12
- <PackageReference Include =" dss_sharp" Version =" 0.13.1 " />
12
+ <PackageReference Include =" dss_sharp" Version =" 0.13.2 " />
13
13
<PackageReference Include =" ScottPlot.WinForms" Version =" 4.1.61" />
14
14
</ItemGroup >
15
15
Original file line number Diff line number Diff line change 2
2
sed -i -r ' s/(<FileVersion>[0-9]+\.[0-9]+\.[0-9]+\.)[0-9]+/\1$(GITHUB_RUN_NUMBER)/' dss_sharp.csproj
3
3
4
4
if [ " tag" == " ${GITHUB_REF_TYPE} " ]; then
5
- sed -i -r ' s/<PackageVersion>.*<\/PackageVersion>/<PackageVersion>$(GITHUB_REF )<\/PackageVersion>/' dss_sharp.csproj
5
+ sed -i -r ' s/<PackageVersion>.*<\/PackageVersion>/<PackageVersion>$(GITHUB_REF_NAME )<\/PackageVersion>/' dss_sharp.csproj
6
6
fi
7
7
8
8
cat dss_sharp.csproj
Original file line number Diff line number Diff line change 1
1
if [ -z ${DSS_CAPI_TAG+x} ]; then
2
- DSS_CAPI_TAG=0.13.1
2
+ DSS_CAPI_TAG=0.13.2
3
3
fi
4
4
5
5
rm -rf runtimes messages
You can’t perform that action at this time.
0 commit comments