Skip to content

Commit

Permalink
Update nuget Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
LiorBanai committed Oct 26, 2019
1 parent 2426cec commit 6596e58
Show file tree
Hide file tree
Showing 7 changed files with 36 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -77,3 +77,4 @@
/Analogy.Core/DevExpress/DevExpress.Images.v19.1.dll
/Analogy.Core/DevExpress/DevExpress.Data.v19.1.dll
/Analogy.Core/DevExpress/DevExpress.Charts.v19.1.Core.dll
/Analogy.Core/bin/Release/netcoreapp3.0
1 change: 1 addition & 0 deletions Analogy.Core/Analogy.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<UseWindowsForms>true</UseWindowsForms>
<AssemblyName>Analogy</AssemblyName>
<RootNamespace>Analogy</RootNamespace>
<ApplicationIcon>Icons\Pelfusion-Flat-File-Type-Log.ico</ApplicationIcon>
</PropertyGroup>

<ItemGroup>
Expand Down
29 changes: 29 additions & 0 deletions Analogy.Core/Analogy.core.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?xml version="1.0"?>
<package >
<metadata>
<id>Analogy.LogViewer.Core</id>
<version>4.1.2</version>
<title>Analogy Log Viewer</title>
<authors>Lior Banai</authors>
<owners>Lior Banai</owners>
<license type="expression">MIT</license>
<projectUrl>https://github.com/philips-software/logviewer/</projectUrl>
<icon>icon.png</icon>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Analogy Log Viewer</description>
<releaseNotes>Adding .net Core 3.0 Target. See github page</releaseNotes>
<copyright>Copyright 2019 Lior Banai</copyright>
<tags></tags>
<dependencies>
<group targetFramework="netcoreapp3.0">
<dependency id="Analogy.LogViewer.Interfaces" version="2.1.2" />
</group>
</dependencies>
</metadata>
<files>
<file src="bin\Release\netcoreapp3.0\Analogy.exe" target="lib\netcoreapp3.0\Analogy.exe" />
<file src="bin\Release\netcoreapp3.0\Analogy.runtimeconfig.json" target="lib\netcoreapp3.0\Analogy.runtimeconfig.json" />
<file src="bin\Release\netcoreapp3.0\Analogy.deps.json" target="lib\netcoreapp3.0\Analogy.deps.json" />
<file src="icon.png" target="" />
</files>
</package>
1 change: 1 addition & 0 deletions Analogy.Core/DataProviders/AnalogyBuiltInFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ public AnalogyBuiltInFactory()

private IEnumerable<AnalogyChangeLog> GetChangeLog()
{
yield return new AnalogyChangeLog("adding .net Core 3.0 Target", AnalogChangeLogType.Improvement, "Lior Banai", new DateTime(2019, 10, 26));
yield return new AnalogyChangeLog("Offline files: Add option for file pooling. (issue #36)", AnalogChangeLogType.Improvement, "Lior Banai", new DateTime(2019, 10, 24));
yield return new AnalogyChangeLog("cleanup old namespaces (issue #34)", AnalogChangeLogType.Improvement, "Lior Banai", new DateTime(2019, 10, 18));
yield return new AnalogyChangeLog("frameworks update: interface dll is not target .net standard 2.0 and Analogy UI is .net framework 4.7.2 (issues #32,#33)", AnalogChangeLogType.Improvement, "Lior Banai", new DateTime(2019, 10, 18));
Expand Down
2 changes: 1 addition & 1 deletion Analogy.Interfaces/Analogy.Interfaces.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>Analogy.LogViewer.Interfaces</id>
<version>2.1.1</version>
<version>2.1.2</version>
<title>Analogy Log Viewer - Interfaces</title>
<authors>Lior Banai</authors>
<owners>Lior Banai</owners>
Expand Down
4 changes: 2 additions & 2 deletions Analogy/Analogy.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package >
<metadata>
<id>Analogy.LogViewer</id>
<version>4.1.1</version>
<version>4.1.2</version>
<title>Analogy Log Viewer</title>
<authors>Lior Banai</authors>
<owners>Lior Banai</owners>
Expand All @@ -16,7 +16,7 @@
<tags></tags>
<dependencies>
<group targetFramework="net472">
<dependency id="Analogy.LogViewer.Interfaces" version="2.1.1" />
<dependency id="Analogy.LogViewer.Interfaces" version="2.1.2" />
</group>
</dependencies>
</metadata>
Expand Down
1 change: 1 addition & 0 deletions Analogy/DataProviders/AnalogyBuiltInFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ public AnalogyBuiltInFactory()

private IEnumerable<AnalogyChangeLog> GetChangeLog()
{
yield return new AnalogyChangeLog("adding .net Core 3.0 Target", AnalogChangeLogType.Improvement, "Lior Banai", new DateTime(2019, 10, 26));
yield return new AnalogyChangeLog("Offline files: Add option for file pooling. (issue #36)", AnalogChangeLogType.Improvement, "Lior Banai", new DateTime(2019, 10, 24));
yield return new AnalogyChangeLog("cleanup old namespaces (issue #34)", AnalogChangeLogType.Improvement, "Lior Banai", new DateTime(2019, 10, 18));
yield return new AnalogyChangeLog("frameworks update: interface dll is not target .net standard 2.0 and Analogy UI is .net framework 4.7.2 (issues #32,#33)", AnalogChangeLogType.Improvement, "Lior Banai", new DateTime(2019, 10, 18));
Expand Down

0 comments on commit 6596e58

Please sign in to comment.