Skip to content

Commit 5fe1256

Browse files
committed
example nuget package
1 parent 2275b88 commit 5fe1256

File tree

9 files changed

+36
-8
lines changed

9 files changed

+36
-8
lines changed

Analogy.Example.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
22
# Visual Studio Version 16
33
VisualStudioVersion = 16.0.29411.108
44
MinimumVisualStudioVersion = 10.0.40219.1
5-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Analogy.Implementation.Example", "Analogy.Implementation.Example\Analogy.Implementation.Example.csproj", "{69EF9461-D518-457B-A354-B8A4407F80FF}"
5+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Analogy.LogViewer.Example", "Analogy.LogViewer.Example\Analogy.LogViewer.Example.csproj", "{69EF9461-D518-457B-A354-B8A4407F80FF}"
66
EndProject
77
Global
88
GlobalSection(SolutionConfigurationPlatforms) = preSolution

Analogy.LogViewer.Example.nuspec

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<?xml version="1.0"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
3+
<metadata>
4+
<id>Analogy.LogViewer.Example</id>
5+
<version>1.0.5.0</version>
6+
<title>Analogy Log Viewer - Example</title>
7+
<authors>Lior Banai</authors>
8+
<owners>Lior Banai</owners>
9+
<license type="expression">MIT</license>
10+
<projectUrl>https://github.com/Analogy-LogViewer/Analogy.LogViewer.Example</projectUrl>
11+
<repository type="git" url="https://github.com/Analogy-LogViewer/Analogy.LogViewer.Example" />
12+
<icon>icon.png</icon>
13+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
14+
<description>Analogy Log Viewer (Example)</description>
15+
<releaseNotes>Example package. See github page</releaseNotes>
16+
<copyright>Copyright 2019 Lior Banai</copyright>
17+
<tags></tags>
18+
<dependencies>
19+
<group targetFramework="net472">
20+
<dependency id="Analogy.LogViewer.Interfaces" version="2.1.6.1" />
21+
</group>
22+
</dependencies>
23+
</metadata>
24+
<files>
25+
<file src="Analogy.LogViewer.Example\bin\Release\Analogy.LogViewer.Example.dll" target="lib\net472\Analogy.LogViewer.Example.dll" />
26+
<file src="icon.png" target="" />
27+
</files>
28+
</package>

Analogy.Implementation.Example/Analogy.Implementation.Example.csproj renamed to Analogy.LogViewer.Example/Analogy.LogViewer.Example.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
<ProjectGuid>{69EF9461-D518-457B-A354-B8A4407F80FF}</ProjectGuid>
88
<OutputType>Library</OutputType>
99
<AppDesignerFolder>Properties</AppDesignerFolder>
10-
<RootNamespace>Analogy.Implementation.Example</RootNamespace>
11-
<AssemblyName>Analogy.Implementation.Example</AssemblyName>
10+
<RootNamespace>Analogy.LogViewer.Example</RootNamespace>
11+
<AssemblyName>Analogy.LogViewer.Example</AssemblyName>
1212
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
1414
<Deterministic>true</Deterministic>

Analogy.Implementation.Example/AnalogyDataSourceFactory.cs renamed to Analogy.LogViewer.Example/AnalogyDataSourceFactory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using Analogy.Interfaces;
33
using Analogy.Interfaces.Factories;
44

5-
namespace Analogy.Implementation.Example
5+
namespace Analogy.LogViewer.Example
66
{
77
public class AnalogyDataProviderFactory : IAnalogyDataProvidersFactory
88
{

Analogy.Implementation.Example/AnalogyExampleFactory.cs renamed to Analogy.LogViewer.Example/AnalogyExampleFactory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using Analogy.Interfaces;
44
using Analogy.Interfaces.Factories;
55

6-
namespace Analogy.Implementation.Example
6+
namespace Analogy.LogViewer.Example
77
{
88
public class AnalogyExampleFactory : IAnalogyFactory
99
{

Analogy.Implementation.Example/AnalogyOnlineExampleDataProvider.cs renamed to Analogy.LogViewer.Example/AnalogyOnlineExampleDataProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using System.Timers;
77
using Analogy.Interfaces;
88

9-
namespace Analogy.Implementation.Example
9+
namespace Analogy.LogViewer.Example
1010
{
1111
class AnalogyOnlineExampleDataProvider : IAnalogyRealTimeDataProvider
1212
{

Analogy.Implementation.Example/Properties/AssemblyInfo.cs renamed to Analogy.LogViewer.Example/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
// You can specify all the values or you can default the Build and Revision Numbers
3232
// by using the '*' as shown below:
3333
// [assembly: AssemblyVersion("1.0.*")]
34-
[assembly: AssemblyVersion("1.0.4.0")]
35-
[assembly: AssemblyFileVersion("1.0.4.0")]
34+
[assembly: AssemblyVersion("1.0.5.0")]
35+
[assembly: AssemblyFileVersion("1.0.5.0")]

nuget.exe

5.52 MB
Binary file not shown.

0 commit comments

Comments
 (0)