Skip to content

Commit 31536cc

Browse files
authored
PatchVersion (#462)
1 parent 86e9db7 commit 31536cc

File tree

8 files changed

+26
-11
lines changed

8 files changed

+26
-11
lines changed

Directory.Build.props

-4
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,6 @@
33
<MsBuildAllProjects>$(MsBuildAllProjects);$(MsBuildThisFileFullPath)</MsBuildAllProjects>
44
</PropertyGroup>
55

6-
<PropertyGroup>
7-
<VersionPrefix>1.2.5</VersionPrefix>
8-
</PropertyGroup>
9-
106
<Choose>
117
<!-- The environment variable `Prerelease` is set in the azure-pipelines.yml file. -->
128
<When Condition=" '$(Prerelease)' != '' ">

System.Linq.Dynamic.Core.sln

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
1717
LICENSE = LICENSE
1818
README.md = README.md
1919
report\run-coverlet-local.cmd = report\run-coverlet-local.cmd
20+
version.xml = version.xml
2021
EndProjectSection
2122
EndProject
2223
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EntityFramework.DynamicLinq.Tests.net452", "test\EntityFramework.DynamicLinq.Tests.net452\EntityFramework.DynamicLinq.Tests.net452.csproj", "{6B45E89C-0788-4942-924F-EF6397114BD1}"

src/EntityFramework.DynamicLinq/EntityFramework.DynamicLinq.csproj

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
2+
<Import Project="../../version.xml" />
3+
24
<PropertyGroup>
5+
<Version>1.2.$(PatchVersion)</Version>
36
<Description>Dynamic Linq extensions for EntityFramework which adds Async support</Description>
47
<AssemblyTitle>EntityFramework.DynamicLinq</AssemblyTitle>
58
<Authors>ZZZ Projects;Stef Heyenrath</Authors>
@@ -15,8 +18,8 @@
1518
<PackageProjectUrl>https://dynamic-linq.net/</PackageProjectUrl>
1619
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
1720
<PackageIconUrl>https://zzzprojects.github.io/images/logo/logo-64.png</PackageIconUrl>
18-
<RepositoryType>git</RepositoryType>
19-
<RepositoryUrl>https://github.com/zzzprojects/System.Linq.Dynamic.Core</RepositoryUrl>
21+
<RepositoryType>git</RepositoryType>
22+
<RepositoryUrl>https://github.com/zzzprojects/System.Linq.Dynamic.Core</RepositoryUrl>
2023
<DefaultLanguage>en-us</DefaultLanguage>
2124
<ProjectGuid>{D3804228-91F4-4502-9595-39584E510000}</ProjectGuid>
2225
<DebugType>full</DebugType>
@@ -49,12 +52,12 @@
4952
<PackageReference Include="JetBrains.Annotations" Version="10.2.1" PrivateAssets="All" />
5053
<PackageReference Include="EntityFramework" Version="6.1.3" />
5154
</ItemGroup>
52-
55+
5356
<!--<ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
5457
<Reference Include="System" />
5558
<Reference Include="Microsoft.CSharp" />
5659
</ItemGroup>-->
57-
60+
5861
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.1'">
5962
<PackageReference Include="EntityFramework" Version="6.3.0" />
6063
</ItemGroup>

src/Microsoft.EntityFrameworkCore.DynamicLinq.EFCore2/Microsoft.EntityFrameworkCore.DynamicLinq.EFCore2.csproj

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
2+
<Import Project="../../version.xml" />
3+
24
<PropertyGroup>
5+
<Version>2.2.$(PatchVersion)</Version>
36
<Description>Dynamic Linq extensions for Microsoft.EntityFrameworkCore which adds Async support</Description>
47
<AssemblyTitle>Microsoft.EntityFrameworkCore.DynamicLinq</AssemblyTitle>
58
<Authors>ZZZ Projects;Stef Heyenrath</Authors>
@@ -24,7 +27,6 @@
2427
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
2528
<Company>ZZZ Projects</Company>
2629
<Copyright>Copyright © ZZZ Projects</Copyright>
27-
<Version>2.2.5</Version>
2830
</PropertyGroup>
2931

3032
<PropertyGroup Condition=" '$(buildType)' == 'azure-pipelines-ci' ">

src/Microsoft.EntityFrameworkCore.DynamicLinq.EFCore3/Microsoft.EntityFrameworkCore.DynamicLinq.EFCore3.csproj

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
2+
<Import Project="../../version.xml" />
3+
24
<PropertyGroup>
5+
<Version>3.2.$(PatchVersion)</Version>
36
<Description>Dynamic Linq extensions for Microsoft.EntityFrameworkCore which adds Async support</Description>
47
<AssemblyTitle>Microsoft.EntityFrameworkCore.DynamicLinq</AssemblyTitle>
58
<Authors>ZZZ Projects;Stef Heyenrath</Authors>
@@ -24,7 +27,6 @@
2427
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
2528
<Company>ZZZ Projects</Company>
2629
<Copyright>Copyright © ZZZ Projects</Copyright>
27-
<Version>3.2.5</Version>
2830
</PropertyGroup>
2931

3032
<PropertyGroup Condition=" '$(buildType)' == 'azure-pipelines-ci' ">

src/System.Linq.Dynamic.Core/System.Linq.Dynamic.Core.csproj

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
2+
<Import Project="../../version.xml" />
3+
24
<PropertyGroup>
3-
<!--<Version>1.0.18</Version>-->
5+
<Version>1.2.$(PatchVersion)</Version>
46
<Description>This is a .NETStandard / .NET Core port of the the Microsoft assembly for the .Net 4.0 Dynamic language functionality.</Description>
57
<AssemblyTitle>System.Linq.Dynamic.Core</AssemblyTitle>
68
<Authors>ZZZ Projects;Stef Heyenrath;Microsoft;Scott Guthrie;King Wilder;Nathan Arnott</Authors>

src/Z.EntityFramework.Classic.DynamicLinq/Z.EntityFramework.Classic.DynamicLinq.csproj

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
2+
<Import Project="../../version.xml" />
3+
24
<PropertyGroup>
5+
<Version>1.2.$(PatchVersion)</Version>
6+
37
<Description>Dynamic Linq extensions for Z.EntityFramework.Classic which adds Async support</Description>
48
<AssemblyTitle>Z.EntityFramework.Classic.DynamicLinq</AssemblyTitle>
59
<Authors>ZZZ Projects;Stef Heyenrath</Authors>

version.xml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<Project>
2+
<PropertyGroup>
3+
<PatchVersion>6</PatchVersion>
4+
</PropertyGroup>
5+
</Project>

0 commit comments

Comments
 (0)