Skip to content

Commit e683314

Browse files
committed
Fixed problem with examples referencing an old project name.
1 parent fead6cd commit e683314

File tree

3 files changed

+22
-22
lines changed

3 files changed

+22
-22
lines changed

examples/AutoBindExample/AutoBindExample.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
</ItemGroup>
2121

2222
<ItemGroup>
23-
<ProjectReference Include="..\..\Binder\Binder.csproj" />
23+
<ProjectReference Include="..\..\J4JCommandLine\J4JCommandLine.csproj" />
2424
</ItemGroup>
2525

2626
</Project>

examples/InstancePropertyExample/InstancePropertyExample.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
</ItemGroup>
2020

2121
<ItemGroup>
22-
<ProjectReference Include="..\..\Binder\Binder.csproj" />
22+
<ProjectReference Include="..\..\J4JCommandLine\J4JCommandLine.csproj" />
2323
</ItemGroup>
2424

2525
</Project>
Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<OutputType>Exe</OutputType>
5-
<TargetFramework>net5.0</TargetFramework>
6-
<Nullable>enable</Nullable>
7-
<RootNamespace>J4JSoftware.CommandLine.Examples</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>static binding example for J4JCommandLine</Description>
13-
<Copyright>© Mark A. Olbert all rights reserved</Copyright>
14-
<Configurations>Debug;Release;NugetRelease</Configurations>
15-
</PropertyGroup>
3+
<PropertyGroup>
4+
<OutputType>Exe</OutputType>
5+
<TargetFramework>net5.0</TargetFramework>
6+
<Nullable>enable</Nullable>
7+
<RootNamespace>J4JSoftware.CommandLine.Examples</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>static binding example for J4JCommandLine</Description>
13+
<Copyright>© Mark A. Olbert all rights reserved</Copyright>
14+
<Configurations>Debug;Release;NugetRelease</Configurations>
15+
</PropertyGroup>
1616

17-
<ItemGroup>
18-
<PackageReference Include="Autofac" Version="6.1.0" />
19-
<PackageReference Include="Autofac.Extensions.DependencyInjection" Version="7.1.0" />
20-
</ItemGroup>
17+
<ItemGroup>
18+
<PackageReference Include="Autofac" Version="6.1.0" />
19+
<PackageReference Include="Autofac.Extensions.DependencyInjection" Version="7.1.0" />
20+
</ItemGroup>
2121

22-
<ItemGroup>
23-
<ProjectReference Include="..\..\Binder\Binder.csproj" />
24-
</ItemGroup>
22+
<ItemGroup>
23+
<ProjectReference Include="..\..\J4JCommandLine\J4JCommandLine.csproj" />
24+
</ItemGroup>
2525

2626
</Project>

0 commit comments

Comments
 (0)