Skip to content

Commit 8647c7e

Browse files
committed
Updates to support github packages
1 parent d932a66 commit 8647c7e

File tree

11 files changed

+62
-57
lines changed

11 files changed

+62
-57
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
55

66
no-git/
7+
nuget.config
78

89
# User-specific files
910
*.rsuser
Lines changed: 21 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,27 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<TargetFramework>netcoreapp3.1</TargetFramework>
5-
<Nullable>enable</Nullable>
6-
<AssemblyName>J4JSoftware.CommandLine.Autofac</AssemblyName>
7-
<RootNamespace>J4JSoftware.CommandLine</RootNamespace>
8-
<Version>0.1.0.0</Version>
9-
<Authors>Mark A. Olbert</Authors>
10-
<Company>Jump for Joy Software</Company>
11-
<Product>J4JSoftware Command Line Processor</Product>
12-
<Description>Autofac support for J4JCommandLine</Description>
13-
<Copyright>© Mark A. Olbert all rights reserved</Copyright>
14-
</PropertyGroup>
3+
<PropertyGroup>
4+
<TargetFramework>netcoreapp3.1</TargetFramework>
5+
<Nullable>enable</Nullable>
6+
<AssemblyName>J4JSoftware.CommandLine.Autofac</AssemblyName>
7+
<RootNamespace>J4JSoftware.CommandLine</RootNamespace>
8+
<Version>0.1.0.0</Version>
9+
<Authors>Mark A. Olbert</Authors>
10+
<Company>Jump for Joy Software</Company>
11+
<Product>J4JSoftware Command Line Processor</Product>
12+
<Description>Autofac support for J4JCommandLine</Description>
13+
<Copyright>© Mark A. Olbert all rights reserved</Copyright>
14+
<PackageDescription>Add on to J4JCommandLine to simplify using Autofac dependency injection .</PackageDescription>
15+
<RepositoryUrl>https://github.com/markolbert/J4JCommandLine</RepositoryUrl>
16+
</PropertyGroup>
1517

16-
<ItemGroup>
17-
<PackageReference Include="Autofac" Version="5.2.0" />
18-
<PackageReference Include="Autofac.Extensions.DependencyInjection" Version="6.0.0" />
19-
</ItemGroup>
18+
<ItemGroup>
19+
<PackageReference Include="Autofac" Version="5.2.0" />
20+
<PackageReference Include="Autofac.Extensions.DependencyInjection" Version="6.0.0" />
21+
</ItemGroup>
2022

21-
<ItemGroup>
22-
<ProjectReference Include="..\J4JCommandLine\J4JCommandLine.csproj" />
23-
</ItemGroup>
23+
<ItemGroup>
24+
<ProjectReference Include="..\J4JCommandLine\J4JCommandLine.csproj" />
25+
</ItemGroup>
2426

2527
</Project>

FancyConsole/FancyConsole.csproj

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>netcoreapp3.1</TargetFramework>
5+
<Nullable>enable</Nullable>
6+
<AssemblyName>J4JSoftware.CommandLine.FancyConsole</AssemblyName>
7+
<RootNamespace>J4JSoftware.CommandLine</RootNamespace>
8+
<Version>0.1.0.0</Version>
9+
<Authors>Mark A. Olbert</Authors>
10+
<Company>Jump for Joy Software</Company>
11+
<Product>J4JSoftware Command Line Processor: Help/Error Console Output</Product>
12+
<Description>Fancy Help/Error Console Output for J4JSoftware Command Line Processor</Description>
13+
<Copyright>© Mark A. Olbert all rights reserved</Copyright>
14+
<PackageDescription>Add on to J4JCommandLine to support a more colorful and nicely formatted output.</PackageDescription>
15+
<RepositoryUrl>https://github.com/markolbert/J4JCommandLine</RepositoryUrl>
16+
</PropertyGroup>
17+
18+
<ItemGroup>
19+
<PackageReference Include="Alba.CsConsoleFormat-NoXaml" Version="1.0.0" />
20+
<PackageReference Include="Alba.CsConsoleFormat.ColorfulConsole-NoXaml" Version="1.0.0" />
21+
</ItemGroup>
22+
23+
<ItemGroup>
24+
<ProjectReference Include="..\J4JCommandLine\J4JCommandLine.csproj" />
25+
</ItemGroup>
26+
27+
</Project>

FancyHelpError/FancyHelpError.csproj

Lines changed: 0 additions & 25 deletions
This file was deleted.

J4JCommandLine.Tests/J4JCommandLine.Tests.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,19 @@
1717
<PackageReference Include="FluentAssertions" Version="5.10.3" />
1818
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.6.1" />
1919
<PackageReference Include="xunit" Version="2.4.1" />
20-
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1">
20+
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.2">
2121
<PrivateAssets>all</PrivateAssets>
2222
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2323
</PackageReference>
24-
<PackageReference Include="coverlet.collector" Version="1.2.1">
24+
<PackageReference Include="coverlet.collector" Version="1.3.0">
2525
<PrivateAssets>all</PrivateAssets>
2626
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2727
</PackageReference>
2828
</ItemGroup>
2929

3030
<ItemGroup>
3131
<ProjectReference Include="..\AutofacCommandLine\AutofacCommandLine.csproj" />
32-
<ProjectReference Include="..\FancyHelpError\FancyHelpError.csproj" />
32+
<ProjectReference Include="..\FancyConsole\FancyConsole.csproj" />
3333
<ProjectReference Include="..\J4JCommandLine\J4JCommandLine.csproj" />
3434
</ItemGroup>
3535

J4JCommandLine.sln

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "J4JCommandLine.Tests", "J4J
1111
EndProject
1212
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AutofacCommandLine", "AutofacCommandLine\AutofacCommandLine.csproj", "{15200685-21A4-4BEC-8A55-751AF6963FB2}"
1313
EndProject
14-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FancyHelpError", "FancyHelpError\FancyHelpError.csproj", "{B8501AFB-7D56-426F-AF46-45297E754826}"
15-
EndProject
1614
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "docs", "docs", "{473DDAC4-C8B9-4FBC-97C9-51AB11F038EF}"
1715
ProjectSection(SolutionItems) = preProject
1816
docs\allocation.md = docs\allocation.md
@@ -44,6 +42,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "InstancePropertyExample", "
4442
EndProject
4543
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AutoBindExample", "examples\AutoBindExample\AutoBindExample.csproj", "{C5400387-BD0A-4E24-80B7-C532A8D1A216}"
4644
EndProject
45+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FancyConsole", "FancyConsole\FancyConsole.csproj", "{972D7E96-1318-488A-A3B4-6EBF3C228DD5}"
46+
EndProject
4747
Global
4848
GlobalSection(SolutionConfigurationPlatforms) = preSolution
4949
Debug|Any CPU = Debug|Any CPU
@@ -62,10 +62,6 @@ Global
6262
{15200685-21A4-4BEC-8A55-751AF6963FB2}.Debug|Any CPU.Build.0 = Debug|Any CPU
6363
{15200685-21A4-4BEC-8A55-751AF6963FB2}.Release|Any CPU.ActiveCfg = Release|Any CPU
6464
{15200685-21A4-4BEC-8A55-751AF6963FB2}.Release|Any CPU.Build.0 = Release|Any CPU
65-
{B8501AFB-7D56-426F-AF46-45297E754826}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
66-
{B8501AFB-7D56-426F-AF46-45297E754826}.Debug|Any CPU.Build.0 = Debug|Any CPU
67-
{B8501AFB-7D56-426F-AF46-45297E754826}.Release|Any CPU.ActiveCfg = Release|Any CPU
68-
{B8501AFB-7D56-426F-AF46-45297E754826}.Release|Any CPU.Build.0 = Release|Any CPU
6965
{F6C3D411-BE5F-4B06-9BC7-2C03E6904F29}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
7066
{F6C3D411-BE5F-4B06-9BC7-2C03E6904F29}.Debug|Any CPU.Build.0 = Debug|Any CPU
7167
{F6C3D411-BE5F-4B06-9BC7-2C03E6904F29}.Release|Any CPU.ActiveCfg = Release|Any CPU
@@ -78,6 +74,10 @@ Global
7874
{C5400387-BD0A-4E24-80B7-C532A8D1A216}.Debug|Any CPU.Build.0 = Debug|Any CPU
7975
{C5400387-BD0A-4E24-80B7-C532A8D1A216}.Release|Any CPU.ActiveCfg = Release|Any CPU
8076
{C5400387-BD0A-4E24-80B7-C532A8D1A216}.Release|Any CPU.Build.0 = Release|Any CPU
77+
{972D7E96-1318-488A-A3B4-6EBF3C228DD5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
78+
{972D7E96-1318-488A-A3B4-6EBF3C228DD5}.Debug|Any CPU.Build.0 = Debug|Any CPU
79+
{972D7E96-1318-488A-A3B4-6EBF3C228DD5}.Release|Any CPU.ActiveCfg = Release|Any CPU
80+
{972D7E96-1318-488A-A3B4-6EBF3C228DD5}.Release|Any CPU.Build.0 = Release|Any CPU
8181
EndGlobalSection
8282
GlobalSection(SolutionProperties) = preSolution
8383
HideSolutionNode = FALSE

J4JCommandLine/J4JCommandLine.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
</ItemGroup>
2323

2424
<ItemGroup>
25-
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="3.1.4" />
25+
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="3.1.5" />
2626
</ItemGroup>
2727

2828
</Project>

examples/AutoBindExample/AutoBindExample.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
<ItemGroup>
1515
<ProjectReference Include="..\..\AutofacCommandLine\AutofacCommandLine.csproj" />
16-
<ProjectReference Include="..\..\FancyHelpError\FancyHelpError.csproj" />
16+
<ProjectReference Include="..\..\FancyConsole\FancyConsole.csproj" />
1717
<ProjectReference Include="..\..\J4JCommandLine\J4JCommandLine.csproj" />
1818
</ItemGroup>
1919

examples/InstancePropertyExample/InstancePropertyExample.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
<ItemGroup>
1414
<ProjectReference Include="..\..\AutofacCommandLine\AutofacCommandLine.csproj" />
15-
<ProjectReference Include="..\..\FancyHelpError\FancyHelpError.csproj" />
15+
<ProjectReference Include="..\..\FancyConsole\FancyConsole.csproj" />
1616
<ProjectReference Include="..\..\J4JCommandLine\J4JCommandLine.csproj" />
1717
</ItemGroup>
1818

0 commit comments

Comments
 (0)