Skip to content

Commit

Permalink
Updated Package references.
Browse files Browse the repository at this point in the history
Added EdCast V6, and started testing
  • Loading branch information
RNoeldner committed Dec 2, 2024
1 parent 012a29c commit 9ab6afc
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions Application/CSVQuickViewer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
<ItemGroup>
<PackageReference Include="FCTB" Version="2.16.24" />
<PackageReference Include="Microsoft-WindowsAPICodePack-Shell" Version="1.1.5" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.1" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.0" />
<PackageReference Include="Serilog.Extensions.Logging" Version="8.0.0" />
<PackageReference Include="Serilog.Sinks.File" Version="6.0.0" />
<PackageReference Include="Ben.Demystifier" Version="0.4.1" />
Expand All @@ -115,7 +115,7 @@
<Reference Include="WindowsBase" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0-windows'">
<PackageReference Include="System.Text.Encoding.CodePages" Version="8.0.0" />
<PackageReference Include="System.Text.Encoding.CodePages" Version="9.0.0" />
</ItemGroup>
<ItemGroup>
<None Update="LICENSE">
Expand Down
4 changes: 2 additions & 2 deletions Library/ClassLibraryCSV/ClassLibraryCsvExtensionMethods.cs
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ public static string PlaceholderReplace2(this string input, in string placeholde
/// <summary>
/// Check if a text contains any of the supported placeholder {xxx} (xxx) #xxx# or &lt;:xxx&gt;
/// </summary>
/// <param name="input">the text wih possble placeholders</param>
/// <param name="input">the text with possible placeholders</param>
/// <returns>true if there seems to be a placeholder</returns>
public static bool AssumePlaceholderPresent(this string input)
{
Expand Down Expand Up @@ -484,7 +484,7 @@ public static string PlaceholderReplace(this string input, in string placeholder
if (string.IsNullOrEmpty(placeholder) || input.IndexOf(placeholder, StringComparison.OrdinalIgnoreCase) == -1)
return input;

// The excat found text with lead in and lead out
// The extract found text with lead in and lead out
var found = string.Empty;
foreach (var type in new[]
{
Expand Down
4 changes: 2 additions & 2 deletions Library/ClassLibraryCSV/CsvTools.ClassLibraryCSV.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,15 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="Ben.Demystifier" Version="0.4.1" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.1" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="SharpZipLib" Version="1.4.2" />

<PackageReference Include="TimeZoneConverter" Version="6.1.*" />
<PackageReference Include="UTF.Unknown" Version="2.5.1" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)'=='net8.0'">
<PackageReference Include="System.Text.Encoding.CodePages" Version="8.0.0" />
<PackageReference Include="System.Text.Encoding.CodePages" Version="9.0.0" />
</ItemGroup>

</Project>
6 changes: 3 additions & 3 deletions Library/SharedAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
// Version information for an assembly consists of the following four values: Major Version Minor
// Version Build Number Revision You can specify all the values or you can default the Build and.Json
// Revision Numbers by using the '*' as shown below: [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.7.11.611")]
[assembly: AssemblyFileVersion("1.7.11.611")]
[assembly: AssemblyInformationalVersion("1.7.11.611")] // a.k.a. "Product version"
[assembly: AssemblyVersion("1.7.12.612")]
[assembly: AssemblyFileVersion("1.7.12.612")]
[assembly: AssemblyInformationalVersion("1.7.12.612")] // a.k.a. "Product version"
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<Compile Include="..\UnitTestBasic\UnitTestStaticForms.cs" Link="UnitTestStaticForms.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MSTest" Version="3.5.2" />
<PackageReference Include="MSTest" Version="3.6.3" />
<ProjectReference Include="..\..\Application\CSVQuickViewer.csproj" />
</ItemGroup>
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="JetBrains.Annotations" Version="2024.2.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.0" />
<PackageReference Include="MSTest" Version="3.5.2" />
<PackageReference Include="MSTest.TestAdapter" Version="3.5.2" />
<PackageReference Include="MSTest.TestFramework" Version="3.5.2" />
<PackageReference Include="JetBrains.Annotations" Version="2024.3.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="MSTest" Version="3.6.3" />
<PackageReference Include="MSTest.TestAdapter" Version="3.6.3" />
<PackageReference Include="MSTest.TestFramework" Version="3.6.3" />
<ProjectReference Include="..\..\Library\ClassLibraryCSV\CsvTools.ClassLibraryCSV.csproj" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="MSTest" Version="3.5.2" />
<PackageReference Include="MSTest" Version="3.6.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Library\WinFormControls\CsvTools.WinFormControlsLibrary.csproj" />
Expand Down

0 comments on commit 9ab6afc

Please sign in to comment.