Skip to content

Commit 0bc0f53

Browse files
committed
Change package output and source links options
1 parent de2fcb2 commit 0bc0f53

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

appveyor.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,6 @@ test_script:
2424
Exit $LASTEXITCODE
2525
artifacts:
2626
- path: 'src\SimSharp\bin\Release\*.nupkg'
27-
name: NuGet Package
27+
name: NuGet Package
28+
- path: 'src\SimSharp\bin\Release\*.snupkg'
29+
name: Symbols NuGet Package

src/SimSharp/SimSharp.csproj

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<DelaySign>False</DelaySign>
88
<AssemblyName>SimSharp</AssemblyName>
99
<RootNamespace>SimSharp</RootNamespace>
10-
<Version>3.4</Version>
10+
<Version>3.4.1</Version>
1111
<Authors>Andreas Beham</Authors>
1212
<Description>Sim# aims to port the concepts used in SimPy (https://pypi.python.org/pypi/simpy) to the .NET world. It is implemented in C# and builds on the .NET Framework 4.5 / .NET Standard 2.0. Sim# uses an efficient event queue (adapted from https://github.com/BlueRaja/High-Speed-Priority-Queue-for-C-Sharp). The MachineShop benchmark comes close to 3.5 million events per second on a Core i7-7 2.7Ghz.
1313

@@ -16,7 +16,10 @@ Sim# allows modeling processes easily and with little boiler plate code. A proce
1616
<Company>HEAL, FH Upper Austria</Company>
1717
<Copyright>Andreas Beham</Copyright>
1818
<PackageProjectUrl>https://github.com/heal-research/SimSharp</PackageProjectUrl>
19-
<PackageReleaseNotes>Sim# 3.4 contains two enhancements, two bug fixes, and some deprecations.
19+
<PackageReleaseNotes>
20+
Sim# 3.4.1 adds source links to the NuGet package.
21+
22+
Sim# 3.4 contains two enhancements, two bug fixes, and some deprecations.
2023

2124
Enhancement
2225
1) Adds implementations of sampling from distributions in form of classes and an IDistribtion interface.
@@ -57,6 +60,8 @@ Sim# allows modeling processes easily and with little boiler plate code. A proce
5760
<PackageLicenseExpression>MIT</PackageLicenseExpression>
5861
<IncludeSource>True</IncludeSource>
5962
<IncludeSymbols>True</IncludeSymbols>
63+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
64+
<EmbedUntrackedSources>true</EmbedUntrackedSources>
6065
<NoWarn>$(NoWarn);1591;1734</NoWarn>
6166
</PropertyGroup>
6267

@@ -74,8 +79,6 @@ Sim# allows modeling processes easily and with little boiler plate code. A proce
7479
<RepositoryType>git</RepositoryType>
7580
<PackageTags>discrete-event simulation</PackageTags>
7681
<PublishRepositoryUrl>true</PublishRepositoryUrl>
77-
<!-- including PDB files in NuGet for source link because symbolsource.org does not support portable PDBs -->
78-
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
7982
</PropertyGroup>
8083

8184
<PropertyGroup Condition="'$(APPVEYOR)' == 'True'">

0 commit comments

Comments
 (0)