Skip to content

Commit

Permalink
update nugets
Browse files Browse the repository at this point in the history
  • Loading branch information
LiorBanai committed Sep 2, 2023
1 parent 68e1d7b commit 727cab8
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 29 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@


<ItemGroup>
<PackageReference Include="Analogy.CommonUtilities" Version="5.0.1" />
<PackageReference Include="Analogy.LogViewer.Interfaces" Version="5.0.1" />
<PackageReference Include="Analogy.LogViewer.Template" Version="5.0.2" />
<PackageReference Include="Analogy.CommonUtilities" Version="5.0.3" />
<PackageReference Include="Analogy.LogViewer.Interfaces" Version="5.0.3" />
<PackageReference Include="Analogy.LogViewer.Template" Version="5.0.3" />
<PackageReference Include="Microsoft.Build.Tasks.Git" Version="1.1.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Analogy.LogViewer.Interfaces" Version="5.0.0" />
<PackageReference Include="Analogy.LogViewer.Interfaces" Version="5.0.3" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
<PackageReference Include="MSTest.TestAdapter" Version="3.1.1" />
<PackageReference Include="MSTest.TestFramework" Version="3.1.1" />
Expand Down
9 changes: 8 additions & 1 deletion Analogy.LogViewer.Serilog.sln
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,14 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Analogy.LogViewer.Serilog.U
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Analogy.LogViewer.Serilog.AspNet", "Analogy.LogViewer.Serilog.AspNet\Analogy.LogViewer.Serilog.AspNet.csproj", "{863AEB49-888E-49BF-ACDA-5290BE40E039}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Analogy.LogViewer.Serilog.Sinks.MongoDB", "Analogy.LogViewer.Serilog.Sinks.MongoDB\Analogy.LogViewer.Serilog.Sinks.MongoDB.csproj", "{44C3F7B3-D820-4770-8836-98365AD77140}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Analogy.LogViewer.Serilog.Sinks.MongoDB", "Analogy.LogViewer.Serilog.Sinks.MongoDB\Analogy.LogViewer.Serilog.Sinks.MongoDB.csproj", "{44C3F7B3-D820-4770-8836-98365AD77140}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{47A63431-A8BD-4B24-84A5-606F5DB73E6F}"
ProjectSection(SolutionItems) = preProject
.editorconfig = .editorconfig
.gitignore = .gitignore
nuget.config = nuget.config
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
8 changes: 4 additions & 4 deletions Analogy.LogViewer.Serilog/Analogy.LogViewer.Serilog.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<PackageIcon>AnalogySerilog.png</PackageIcon>
<PackageIconUrl />
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<VersionPrefix>5.0.1.0</VersionPrefix>
<VersionPrefix>5.0.3.0</VersionPrefix>
<VersionSuffix></VersionSuffix>
<Company>Analogy.LogViewer</Company>
<GenerateResourceUsePreserializedResources>true</GenerateResourceUsePreserializedResources>
Expand All @@ -32,9 +32,9 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Analogy.CommonUtilities" Version="5.0.0" />
<PackageReference Include="Analogy.LogViewer.Interfaces" Version="5.0.0" />
<PackageReference Include="Analogy.LogViewer.Template" Version="5.0.2" />
<PackageReference Include="Analogy.CommonUtilities" Version="5.0.3" />
<PackageReference Include="Analogy.LogViewer.Interfaces" Version="5.0.3" />
<PackageReference Include="Analogy.LogViewer.Template" Version="5.0.3" />
<PackageReference Include="Microsoft.Build.Tasks.Git" Version="1.1.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down
26 changes: 6 additions & 20 deletions Analogy.LogViewer.Serilog/SerilogSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,26 +7,12 @@ namespace Analogy.LogViewer.Serilog
public class SerilogSettings
{
public bool UseApplicationFolderForSettings { get; set; }
public string FileOpenDialogFilters { get; set; }
public string FileOpenDialogFilters { get; set; } = "All Supported formats (*.Clef;*.log;*.gz)|*.clef;*.log;*.gz;*.zip|Clef format (*.clef)|*.clef|Plain log text file (*.log)|*.log|GZIP file (*.gz)|*.gz|ZIP file (*.zip)|*.zip";
public string FileSaveDialogFilters { get; } = string.Empty;
public List<string> SupportFormats { get; set; }
public string Directory { get; set; }
public FileFormat Format { get; set; }
public FileFormatDetection FileFormatDetection { get; set; }
public List<string> IgnoredAttributes { get; set; }

public SerilogSettings()
{
FileFormatDetection = FileFormatDetection.Automatic;
Format = FileFormat.Unknown;
Directory = string.Empty;
IgnoredAttributes = new List<string>() { "N" };
FileOpenDialogFilters = "All Supported formats (*.Clef;*.log;*.gz)|*.clef;*.log;*.gz;*.zip|Clef format (*.clef)|*.clef|Plain log text file (*.log)|*.log|GZIP file (*.gz)|*.gz|ZIP file (*.zip)|*.zip";
SupportFormats = new List<string> { "*.Clef", "*.log"};
}




public List<string> SupportFormats { get; set; } = new() { "*.Clef", "*.log"};
public string Directory { get; set; } = string.Empty;
public FileFormat Format { get; set; } = FileFormat.Unknown;
public FileFormatDetection FileFormatDetection { get; set; } = FileFormatDetection.Automatic;
public List<string> IgnoredAttributes { get; set; } = new() { "N" };
}
}

0 comments on commit 727cab8

Please sign in to comment.