Skip to content

Commit 1c4f4eb

Browse files
committed
Add metadata to projects
1 parent bd8a507 commit 1c4f4eb

File tree

5 files changed

+49
-30
lines changed

5 files changed

+49
-30
lines changed

BooleanExpressionParser.CLI/BooleanExpressionParser.CLI.csproj

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
<TargetFramework>net7.0</TargetFramework>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
8+
<PackageId>BooleanExpressionParser.CLI</PackageId>
9+
<Version>1.2.0</Version>
10+
<Authors>Tom Chapman</Authors>
811
</PropertyGroup>
912

1013
<ItemGroup>
@@ -13,7 +16,7 @@
1316
</ItemGroup>
1417

1518
<ItemGroup>
16-
<ProjectReference Include="..\BooleanExpressionParser\BooleanExpressionParser.csproj" />
19+
<ProjectReference Include="..\BooleanExpressionParser\BooleanExpressionParser.csproj" />
1720
</ItemGroup>
1821

1922
</Project>

BooleanExpressionParser.Web/Client/BooleanExpressionParser.Web.Client.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
<Nullable>annotations</Nullable>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<ServiceWorkerAssetsManifest>service-worker-assets.js</ServiceWorkerAssetsManifest>
8+
<PackageId>BooleanExpressionParser.Web.Client</PackageId>
9+
<Version>1.0.0</Version>
10+
<Authors>Tom Chapman</Authors>
811
</PropertyGroup>
912

1013
<ItemGroup>
Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,21 @@
1-
<Project Sdk="Microsoft.NET.Sdk.Web">
1+
<Project Sdk="Microsoft.NET.Sdk.Web">
22

3-
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
5-
<Nullable>enable</Nullable>
6-
<ImplicitUsings>enable</ImplicitUsings>
7-
</PropertyGroup>
3+
<PropertyGroup>
4+
<TargetFramework>net7.0</TargetFramework>
5+
<Nullable>enable</Nullable>
6+
<ImplicitUsings>enable</ImplicitUsings>
7+
<PackageId>BooleanExpressionParser.Web.Server</PackageId>
8+
<Version>1.0.0</Version>
9+
<Authors>Tom Chapman</Authors>
10+
</PropertyGroup>
811

9-
<ItemGroup>
10-
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="7.0.0" />
11-
</ItemGroup>
12+
<ItemGroup>
13+
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="7.0.0" />
14+
</ItemGroup>
1215

13-
<ItemGroup>
14-
<ProjectReference Include="..\Client\BooleanExpressionParser.Web.Client.csproj" />
15-
<ProjectReference Include="..\Shared\BooleanExpressionParser.Web.Shared.csproj" />
16-
</ItemGroup>
16+
<ItemGroup>
17+
<ProjectReference Include="..\Client\BooleanExpressionParser.Web.Client.csproj" />
18+
<ProjectReference Include="..\Shared\BooleanExpressionParser.Web.Shared.csproj" />
19+
</ItemGroup>
1720

1821
</Project>
Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
5-
<Nullable>enable</Nullable>
6-
<ImplicitUsings>enable</ImplicitUsings>
7-
</PropertyGroup>
3+
<PropertyGroup>
4+
<TargetFramework>net7.0</TargetFramework>
5+
<Nullable>enable</Nullable>
6+
<ImplicitUsings>enable</ImplicitUsings>
7+
<PackageId>BooleanExpressionParser.Web.Shared</PackageId>
8+
<Version>1.0.0</Version>
9+
<Authors>Tom Chapman</Authors>
10+
</PropertyGroup>
811

9-
<ItemGroup>
10-
<SupportedPlatform Include="browser" />
11-
</ItemGroup>
12+
<ItemGroup>
13+
<SupportedPlatform Include="browser" />
14+
</ItemGroup>
1215
</Project>
Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<OutputType>Library</OutputType>
5-
<TargetFramework>net7.0</TargetFramework>
6-
<ImplicitUsings>enable</ImplicitUsings>
7-
<Nullable>enable</Nullable>
8-
</PropertyGroup>
3+
<PropertyGroup>
4+
<OutputType>Library</OutputType>
5+
<TargetFramework>net7.0</TargetFramework>
6+
<ImplicitUsings>enable</ImplicitUsings>
7+
<Nullable>enable</Nullable>
8+
<PackageId>BooleanExpressionParser</PackageId>
9+
<Version>1.0.0</Version>
10+
<Authors>Tom Chapman</Authors>
11+
</PropertyGroup>
12+
13+
<ItemGroup>
14+
<Folder Include="Properties\" />
15+
</ItemGroup>
916

1017
</Project>

0 commit comments

Comments
 (0)