Skip to content

Commit

Permalink
CsvHelper 30.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
i2van committed Nov 11, 2022
1 parent d4975d3 commit a1caf29
Show file tree
Hide file tree
Showing 7 changed files with 37 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
with:
name: CsvLINQPadDriver${{ env.BIN_POSTFIX }}
path: |
bin/${{ env.SLN_CONFIG }}/CsvLINQPadDriver.*.nupkg
bin/${{ env.SLN_CONFIG }}/CsvLINQPadDriver.*.*nupkg
Deploy/*.lpx
Deploy/*.lpx?
retention-days: ${{ env.RETENTION_DAYS }}
Expand All @@ -72,5 +72,5 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: LPRun${{ env.BIN_POSTFIX }}
path: bin/${{ env.SLN_CONFIG }}/LPRun.*.nupkg
path: bin/${{ env.SLN_CONFIG }}/LPRun.*.*nupkg
retention-days: ${{ env.RETENTION_DAYS }}
2 changes: 1 addition & 1 deletion Deploy/buildlpx.cmd
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@echo off

set version=7.3.13
set version=7.3.14
set fileName=CsvLINQPadDriver.%version%
set ext=lpx
set ext6=%ext%6
Expand Down
14 changes: 14 additions & 0 deletions Src/CsvLINQPadDriver/CsvLINQPadDriver.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,20 @@
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>

<PropertyGroup>
<IncludeSymbols>true</IncludeSymbols>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>

<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All"/>
</ItemGroup>

<ItemGroup>
<Compile Remove="Bcl\**" />
</ItemGroup>
Expand Down
9 changes: 4 additions & 5 deletions Src/CsvLINQPadDriver/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<Project>
<PropertyGroup>
<Version>7.3.13</Version>
<PackageReleaseNotes>.NET 7 build.
More numeric conversion extension methods.</PackageReleaseNotes>
<Version>7.3.14</Version>
<PackageReleaseNotes>CsvHelper 30.0.1</PackageReleaseNotes>
</PropertyGroup>

<PropertyGroup>
Expand All @@ -23,12 +22,12 @@ More numeric conversion extension methods.</PackageReleaseNotes>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="CsvHelper" Version="30.0.0" />
<PackageReference Include="CsvHelper" Version="30.0.1" />
<PackageReference Include="Humanizer.Core" Version="2.14.1" />
<PackageReference Include="LINQPad.Reference" Version="1.3.0" />
<PackageReference Include="Microsoft-WindowsAPICodePack-Core-6.0 " Version="1.1.5" />
<PackageReference Include="Microsoft-WindowsAPICodePack-Shell-6.0" Version="1.1.5" />
<PackageReference Include="UnicodeCharsetDetector.Standard" Version="1.1.4" />
<PackageReference Include="UnicodeCharsetDetector.Standard" Version="1.1.5" />
<PackageReference Include="UTF.Unknown" Version="2.5.1" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion Src/CsvLINQPadDriver/app.manifest
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<assemblyIdentity
name="CsvLINQPadDriver"
version="7.3.13.0"
version="7.3.14.0"
type="win32"
/>

Expand Down
2 changes: 1 addition & 1 deletion Src/LPRun/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<Version>7.5.14</Version>
<Version>7.5.15</Version>
<PackageReleaseNotes>LPRun $(Version)</PackageReleaseNotes>
</PropertyGroup>
</Project>
14 changes: 14 additions & 0 deletions Src/LPRun/LPRun.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,20 @@
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>

<PropertyGroup>
<IncludeSymbols>true</IncludeSymbols>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>

<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All"/>
</ItemGroup>

<ItemGroup>
<Content Include="LPRun\Bin\LINQPad.Runtime.dll">
<PackageCopyToOutput>true</PackageCopyToOutput>
Expand Down

0 comments on commit a1caf29

Please sign in to comment.