Skip to content

Commit

Permalink
v7.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
LiorBanai committed Aug 30, 2024
1 parent d85c23e commit 8325784
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 15 deletions.
6 changes: 0 additions & 6 deletions Analogy.LogViewer.PlainTextParser.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.8.34309.116
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Analogy.LogViewer.PlainTextParser.UnitTests", "Analogy.LogViewer.PlainTextParser.UnitTests\Analogy.LogViewer.PlainTextParser.UnitTests.csproj", "{6C2D5075-51BD-4CA1-8D0D-9F1AF7B2CBFA}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Analogy.LogViewer.PlainTextParser", "Analogy.LogViewer.PlainTextParser\Analogy.LogViewer.PlainTextParser.csproj", "{169959BB-BEC0-4196-8A64-040E9FB4491B}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{244504AB-EF64-47EA-915D-0F5B8D1A9708}"
Expand All @@ -21,10 +19,6 @@ Global
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{6C2D5075-51BD-4CA1-8D0D-9F1AF7B2CBFA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6C2D5075-51BD-4CA1-8D0D-9F1AF7B2CBFA}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6C2D5075-51BD-4CA1-8D0D-9F1AF7B2CBFA}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6C2D5075-51BD-4CA1-8D0D-9F1AF7B2CBFA}.Release|Any CPU.Build.0 = Release|Any CPU
{169959BB-BEC0-4196-8A64-040E9FB4491B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{169959BB-BEC0-4196-8A64-040E9FB4491B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{169959BB-BEC0-4196-8A64-040E9FB4491B}.Release|Any CPU.ActiveCfg = Release|Any CPU
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFrameworks>net8.0-windows;net7.0-windows;net6.0-windows;net48;net471</TargetFrameworks>
<VersionPrefix>6.0.0</VersionPrefix>
<TargetFrameworks>net8.0-windows;net6.0-windows;net48</TargetFrameworks>
<VersionPrefix>7.0.0</VersionPrefix>
<VersionSuffix></VersionSuffix>
<ApplicationIcon />
<AssemblyName>Analogy.LogViewer.PlainTextParser</AssemblyName>
Expand All @@ -29,9 +29,9 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Analogy.LogViewer.Interfaces" Version="6.0.0.1" />
<PackageReference Include="Analogy.CommonUtilities" Version="6.0.0" />
<PackageReference Include="Analogy.LogViewer.Template" Version="6.0.0" />
<PackageReference Include="Analogy.LogViewer.Interfaces" Version="7.0.0.1" />
<PackageReference Include="Analogy.CommonUtilities" Version="7.0.0" />
<PackageReference Include="Analogy.LogViewer.Template" Version="7.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="System.Resources.Extensions" Version="8.0.0" />
</ItemGroup>
Expand Down
8 changes: 4 additions & 4 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@
</ItemGroup>
<!-- Analyzers (Roslyn, Meziantou, StyleCop, ...) -->
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.CodeStyle" Version="4.7.0">
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.CodeStyle" Version="4.11.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Meziantou.Analyzer" Version="2.0.110">
<PackageReference Include="Meziantou.Analyzer" Version="2.0.163">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand All @@ -51,9 +51,9 @@
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/>
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net48' or '$(TargetFramework)' == 'net471' ">
<ItemGroup Condition=" '$(TargetFramework)' == 'net48' ">
<PackageReference Include="Microsoft.Bcl.HashCode" Version="1.1.1" />
<PackageReference Include="PolySharp" Version="1.13.2">
<PackageReference Include="PolySharp" Version="1.14.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down

0 comments on commit 8325784

Please sign in to comment.