Skip to content

Commit 650ca9c

Browse files
committed
Update version and enable NuGet symbol package generation
Updated versioning in `Directory.Build.Props` to `3.4.1` for `<Version>`, `<FileVersion>`, and `<AssemblyVersion>`. Added properties to generate NuGet symbol packages: - Enabled `<IncludeSymbols>` with value `true`. - Set `<SymbolPackageFormat>` to `snupkg`. Retained existing `<PathMap>` and `<SuppressNETCoreSdkPreviewMessage>` properties for context.
1 parent a245da6 commit 650ca9c

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

Directory.Build.Props

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
<PropertyGroup>
44
<Authors>Maytham Fahmi and Contributors</Authors>
55
<Copyright>All Rights Reserved</Copyright>
6-
<Version>3.3.0</Version>
7-
<FileVersion>3.4.0.0</FileVersion>
8-
<AssemblyVersion>3.4.0.0</AssemblyVersion>
6+
<Version>3.4.1</Version>
7+
<FileVersion>3.4.1.0</FileVersion>
8+
<AssemblyVersion>3.4.1.0</AssemblyVersion>
99
</PropertyGroup>
1010

1111
<PropertyGroup>
@@ -19,6 +19,10 @@
1919

2020
<!-- Some of us are already working with the next SDK -->
2121
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
22+
23+
<!-- Generate symbol packages for NuGet -->
24+
<IncludeSymbols>true</IncludeSymbols>
25+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
2226
</PropertyGroup>
2327

2428
</Project>

0 commit comments

Comments
 (0)