Skip to content

Commit 522637c

Browse files
Update build settings for CSV project
Disabled symbol package generation and switched DebugType to 'embedded' for Release configuration to improve build output and simplify deployment.
1 parent 465c9cb commit 522637c

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

project/Dataplat.Dbatools.Csv/Dataplat.Dbatools.Csv.csproj

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@
2323
<PackageReleaseNotes>Initial release with high-performance CSV parsing, parallel processing support, and comprehensive edge case handling.</PackageReleaseNotes>
2424
<PublishRepositoryUrl>true</PublishRepositoryUrl>
2525
<EmbedUntrackedSources>true</EmbedUntrackedSources>
26-
<IncludeSymbols>true</IncludeSymbols>
27-
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
26+
<IncludeSymbols>false</IncludeSymbols>
2827

2928
<!-- Build settings -->
3029
<GenerateDocumentationFile>true</GenerateDocumentationFile>
@@ -34,7 +33,7 @@
3433
</PropertyGroup>
3534

3635
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
37-
<DebugType>portable</DebugType>
36+
<DebugType>embedded</DebugType>
3837
<Optimize>true</Optimize>
3938
</PropertyGroup>
4039

0 commit comments

Comments
 (0)