Skip to content

Commit

Permalink
- Update version on assemblies
Browse files Browse the repository at this point in the history
  • Loading branch information
NinjaRocks committed Nov 21, 2024
1 parent af29b51 commit 5aec9ff
Show file tree
Hide file tree
Showing 8 changed files with 49 additions and 2 deletions.
2 changes: 2 additions & 0 deletions src/Schemio.API/IWebQuery.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
using System.Net.Http;
using System.Threading.Tasks;
using Microsoft.Extensions.Logging;
using Schemio.Core;

Expand Down
2 changes: 2 additions & 0 deletions src/Schemio.API/QueryEngine.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
using System.Net.Http;
using System.Threading.Tasks;
using Microsoft.Extensions.Logging;
using Schemio.Core;
using Schemio.Core.Helpers;
Expand Down
37 changes: 35 additions & 2 deletions src/Schemio.API/Schemio.API.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,48 @@

<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<IsPackable>true</IsPackable>
<Nullable>enable</Nullable>
<Title>Schemio with EntityFramework</Title>
<Authors>Code Shayk</Authors>
<Company>Code Shayk</Company>
<Description>.Net Library to hydrate data entities by object graph using schema paths (supports XPath &amp; JSONPath). Supports Web API using HttpClient. </Description>
<Copyright>Copyright (c) 2024 Code Shayk</Copyright>
<PackageProjectUrl>https://github.com/CodeShayk/Schemio/wiki/i.-Home</PackageProjectUrl>
<PackageIcon>ninja-icon-16.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/CodeShayk/Schemio</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>graphql json-schema xsd data-mapping query-engine data-mapper data-schema schema-mapping object-tree-query object-graph-query schema-mapper xsd-data-object object-graph-data entity-data entity-data-fetch hydrate-object object-hydration object-data object-fetch schemio-Api HttpCliet</PackageTags>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<IncludeSymbols>True</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<Version>2.0.0</Version>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<Optimize>True</Optimize>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Http" Version="9.0.0" />
<None Include="..\..\Images\ninja-icon-16.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\..\LICENSE.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Http" Version="9.0.0" />
<ProjectReference Include="..\Schemio.Core\Schemio.Core.csproj" />
</ItemGroup>

Expand Down
1 change: 1 addition & 0 deletions src/Schemio.API/WebHeaderResult.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using System.Collections.Generic;
using Schemio.Core;

namespace Schemio.API
Expand Down
6 changes: 6 additions & 0 deletions src/Schemio.API/WebQuery.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Extensions.Logging;
using Schemio.Core;
using Schemio.Core.Helpers;
Expand Down
1 change: 1 addition & 0 deletions src/Schemio.Core/Schemio.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
<IncludeSymbols>True</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<Version>2.0.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
1 change: 1 addition & 0 deletions src/Schemio.EntityFramework/Schemio.EntityFramework.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
<IncludeSymbols>True</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<Version>2.0.0</Version>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand Down
1 change: 1 addition & 0 deletions src/Schemio.SQL/Schemio.SQL.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
<IncludeSymbols>True</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<Version>2.0.0</Version>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand Down

0 comments on commit 5aec9ff

Please sign in to comment.