Skip to content

Commit cb53ce7

Browse files
committed
update configs
1 parent 25692f3 commit cb53ce7

7 files changed

Lines changed: 28 additions & 21 deletions

File tree

Dependencies.targets

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<PropertyGroup Label="Common Versions">
3-
<EFCoreVersion>[8.0.1,8.0.999]</EFCoreVersion>
3+
<EFCoreVersion>[8.0.2,8.0.999]</EFCoreVersion>
44
</PropertyGroup>
55

66
<ItemGroup Label="Dependencies">
@@ -12,12 +12,12 @@
1212
<PackageReference Update="SingleStoreConnector" Version="1.2.0" />
1313

1414
<PackageReference Update="NetTopologySuite" Version="2.5.0" />
15-
<PackageReference Update="System.Text.Json" Version="8.0.1" />
15+
<PackageReference Update="System.Text.Json" Version="8.0.2" />
1616
<PackageReference Update="Newtonsoft.Json" Version="13.0.3" />
1717

1818
<PackageReference Update="Castle.Core" Version="5.1.1" />
19-
<PackageReference Update="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.1" />
20-
<PackageReference Update="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.1" />
19+
<PackageReference Update="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.2" />
20+
<PackageReference Update="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.2" />
2121
<PackageReference Update="Microsoft.Bcl.AsyncInterfaces" Version="8.0.0" />
2222
<PackageReference Update="Microsoft.Bcl.HashCode" Version="1.1.1" />
2323
<PackageReference Update="Microsoft.Extensions.Caching.Memory" Version="8.0.0" />

Directory.Build.props

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
<Import Project="Version.props" />
33
<Import Project="Development.props" Condition="Exists('Development.props')" />
44

5+
<PropertyGroup>
6+
<LocalEFCoreRepositoryConfiguration Condition="'$(LocalEFCoreRepositoryConfiguration)' == ''">Debug</LocalEFCoreRepositoryConfiguration>
7+
<LocalSingleStoreConnectorRepositoryConfiguration Condition="'$(LocalSingleStoreConnectorRepositoryConfiguration)' == ''">debug</LocalSingleStoreConnectorRepositoryConfiguration>
8+
<DefineConstants Condition="'$(LocalEFCoreRepository)' != '' And '$(LocalEFCoreRepositoryConfiguration)' == 'Debug'">$(DefineConstants);EFCORE_DEBUG_BUILD</DefineConstants>
9+
<DefineConstants Condition="'$(LocalSingleStoreConnectorRepository)' != '' And '$(LocalSingleStoreConnectorRepositoryConfiguration)' == 'Debug'">$(DefineConstants);SINGLESTORECONNECTOR_DEBUG_BUILD</DefineConstants>
10+
</PropertyGroup>
11+
512
<PropertyGroup>
613
<StrongNameKeyId>EntityFrameworkCore.SingleStore</StrongNameKeyId>
714
<PackageTags>singlestore;Entity Framework Core;entity-framework-core;ef;efcore;ef core;orm;sql</PackageTags>

Version.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
- "rtm" - EF Core release independent, code quality production ready, major release
1313
- "servicing" - EF Core release independent, code quality production ready, mainly bugfixes
1414
-->
15-
<VersionPrefix>8.0.1</VersionPrefix>
15+
<VersionPrefix>8.0.2</VersionPrefix>
1616
<PreReleaseVersionLabel>servicing</PreReleaseVersionLabel>
1717

1818
<!--

src/EFCore.SingleStore.Json.Microsoft/EFCore.SingleStore.Json.Microsoft.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,16 +40,16 @@
4040
<!-- TODO: Check, whether the following references are really all in use. -->
4141
<ItemGroup Condition="'$(LocalEFCoreRepository)' != ''">
4242
<Reference Include="Microsoft.EntityFrameworkCore">
43-
<HintPath>$(LocalEFCoreRepository)\artifacts\bin\EFCore.Relational\Debug\$(EfCoreTargetFramework)\Microsoft.EntityFrameworkCore.dll</HintPath>
43+
<HintPath>$(LocalEFCoreRepository)\artifacts\bin\EFCore.Relational\$(LocalEFCoreRepositoryConfiguration)\$(EfCoreTargetFramework)\Microsoft.EntityFrameworkCore.dll</HintPath>
4444
</Reference>
4545
<Reference Include="Microsoft.EntityFrameworkCore.Abstractions">
46-
<HintPath>$(LocalEFCoreRepository)\artifacts\bin\EFCore.Relational\Debug\$(EfCoreTargetFramework)\Microsoft.EntityFrameworkCore.Abstractions.dll</HintPath>
46+
<HintPath>$(LocalEFCoreRepository)\artifacts\bin\EFCore.Relational\$(LocalEFCoreRepositoryConfiguration)\$(EfCoreTargetFramework)\Microsoft.EntityFrameworkCore.Abstractions.dll</HintPath>
4747
</Reference>
4848
<Reference Include="Microsoft.EntityFrameworkCore.Analyzers">
49-
<HintPath>$(LocalEFCoreRepository)\artifacts\bin\EFCore.Relational\Debug\$(EfCoreTargetFramework)\Microsoft.EntityFrameworkCore.Analyzers.dll</HintPath>
49+
<HintPath>$(LocalEFCoreRepository)\artifacts\bin\EFCore.Relational\$(LocalEFCoreRepositoryConfiguration)\$(EfCoreTargetFramework)\Microsoft.EntityFrameworkCore.Analyzers.dll</HintPath>
5050
</Reference>
5151
<Reference Include="Microsoft.EntityFrameworkCore.Relational">
52-
<HintPath>$(LocalEFCoreRepository)\artifacts\bin\EFCore.Relational\Debug\$(EfCoreTargetFramework)\Microsoft.EntityFrameworkCore.Relational.dll</HintPath>
52+
<HintPath>$(LocalEFCoreRepository)\artifacts\bin\EFCore.Relational\$(LocalEFCoreRepositoryConfiguration)\$(EfCoreTargetFramework)\Microsoft.EntityFrameworkCore.Relational.dll</HintPath>
5353
</Reference>
5454

5555
<PackageReference Include="Microsoft.Extensions.Configuration.Json" />

src/EFCore.SingleStore.Json.Newtonsoft/EFCore.SingleStore.Json.Newtonsoft.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,16 +48,16 @@
4848
<!-- TODO: Check, whether the following references are really all in use. -->
4949
<ItemGroup Condition="'$(LocalEFCoreRepository)' != ''">
5050
<Reference Include="Microsoft.EntityFrameworkCore">
51-
<HintPath>$(LocalEFCoreRepository)\artifacts\bin\EFCore.Relational\Debug\$(EfCoreTargetFramework)\Microsoft.EntityFrameworkCore.dll</HintPath>
51+
<HintPath>$(LocalEFCoreRepository)\artifacts\bin\EFCore.Relational\$(LocalEFCoreRepositoryConfiguration)\$(EfCoreTargetFramework)\Microsoft.EntityFrameworkCore.dll</HintPath>
5252
</Reference>
5353
<Reference Include="Microsoft.EntityFrameworkCore.Abstractions">
54-
<HintPath>$(LocalEFCoreRepository)\artifacts\bin\EFCore.Relational\Debug\$(EfCoreTargetFramework)\Microsoft.EntityFrameworkCore.Abstractions.dll</HintPath>
54+
<HintPath>$(LocalEFCoreRepository)\artifacts\bin\EFCore.Relational\$(LocalEFCoreRepositoryConfiguration)\$(EfCoreTargetFramework)\Microsoft.EntityFrameworkCore.Abstractions.dll</HintPath>
5555
</Reference>
5656
<Reference Include="Microsoft.EntityFrameworkCore.Analyzers">
57-
<HintPath>$(LocalEFCoreRepository)\artifacts\bin\EFCore.Relational\Debug\$(EfCoreTargetFramework)\Microsoft.EntityFrameworkCore.Analyzers.dll</HintPath>
57+
<HintPath>$(LocalEFCoreRepository)\artifacts\bin\EFCore.Relational\$(LocalEFCoreRepositoryConfiguration)\$(EfCoreTargetFramework)\Microsoft.EntityFrameworkCore.Analyzers.dll</HintPath>
5858
</Reference>
5959
<Reference Include="Microsoft.EntityFrameworkCore.Relational">
60-
<HintPath>$(LocalEFCoreRepository)\artifacts\bin\EFCore.Relational\Debug\$(EfCoreTargetFramework)\Microsoft.EntityFrameworkCore.Relational.dll</HintPath>
60+
<HintPath>$(LocalEFCoreRepository)\artifacts\bin\EFCore.Relational\$(LocalEFCoreRepositoryConfiguration)\$(EfCoreTargetFramework)\Microsoft.EntityFrameworkCore.Relational.dll</HintPath>
6161
</Reference>
6262

6363
<PackageReference Include="Microsoft.Extensions.Configuration.Json" />

src/EFCore.SingleStore.NTS/EFCore.SingleStore.NTS.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,16 +48,16 @@
4848
<!-- TODO: Check, whether the following references are really all in use. -->
4949
<ItemGroup Condition="'$(LocalEFCoreRepository)' != ''">
5050
<Reference Include="Microsoft.EntityFrameworkCore">
51-
<HintPath>$(LocalEFCoreRepository)\artifacts\bin\EFCore.Relational\Debug\$(EfCoreTargetFramework)\Microsoft.EntityFrameworkCore.dll</HintPath>
51+
<HintPath>$(LocalEFCoreRepository)\artifacts\bin\EFCore.Relational\$(LocalEFCoreRepositoryConfiguration)\$(EfCoreTargetFramework)\Microsoft.EntityFrameworkCore.dll</HintPath>
5252
</Reference>
5353
<Reference Include="Microsoft.EntityFrameworkCore.Abstractions">
54-
<HintPath>$(LocalEFCoreRepository)\artifacts\bin\EFCore.Relational\Debug\$(EfCoreTargetFramework)\Microsoft.EntityFrameworkCore.Abstractions.dll</HintPath>
54+
<HintPath>$(LocalEFCoreRepository)\artifacts\bin\EFCore.Relational\$(LocalEFCoreRepositoryConfiguration)\$(EfCoreTargetFramework)\Microsoft.EntityFrameworkCore.Abstractions.dll</HintPath>
5555
</Reference>
5656
<Reference Include="Microsoft.EntityFrameworkCore.Analyzers">
57-
<HintPath>$(LocalEFCoreRepository)\artifacts\bin\EFCore.Relational\Debug\$(EfCoreTargetFramework)\Microsoft.EntityFrameworkCore.Analyzers.dll</HintPath>
57+
<HintPath>$(LocalEFCoreRepository)\artifacts\bin\EFCore.Relational\$(LocalEFCoreRepositoryConfiguration)\$(EfCoreTargetFramework)\Microsoft.EntityFrameworkCore.Analyzers.dll</HintPath>
5858
</Reference>
5959
<Reference Include="Microsoft.EntityFrameworkCore.Relational">
60-
<HintPath>$(LocalEFCoreRepository)\artifacts\bin\EFCore.Relational\Debug\$(EfCoreTargetFramework)\Microsoft.EntityFrameworkCore.Relational.dll</HintPath>
60+
<HintPath>$(LocalEFCoreRepository)\artifacts\bin\EFCore.Relational\$(LocalEFCoreRepositoryConfiguration)\$(EfCoreTargetFramework)\Microsoft.EntityFrameworkCore.Relational.dll</HintPath>
6161
</Reference>
6262

6363
<PackageReference Include="Microsoft.Extensions.Configuration.Json" />

src/EFCore.SingleStore/EFCore.SingleStore.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,16 @@
2626

2727
<ItemGroup Condition="'$(LocalEFCoreRepository)' != ''">
2828
<Reference Include="Microsoft.EntityFrameworkCore">
29-
<HintPath>$(LocalEFCoreRepository)\artifacts\bin\EFCore.Relational\Debug\$(EfCoreTargetFramework)\Microsoft.EntityFrameworkCore.dll</HintPath>
29+
<HintPath>$(LocalEFCoreRepository)\artifacts\bin\EFCore.Relational\$(LocalEFCoreRepositoryConfiguration)\$(EfCoreTargetFramework)\Microsoft.EntityFrameworkCore.dll</HintPath>
3030
</Reference>
3131
<Reference Include="Microsoft.EntityFrameworkCore.Abstractions">
32-
<HintPath>$(LocalEFCoreRepository)\artifacts\bin\EFCore.Relational\Debug\$(EfCoreTargetFramework)\Microsoft.EntityFrameworkCore.Abstractions.dll</HintPath>
32+
<HintPath>$(LocalEFCoreRepository)\artifacts\bin\EFCore.Relational\$(LocalEFCoreRepositoryConfiguration)\$(EfCoreTargetFramework)\Microsoft.EntityFrameworkCore.Abstractions.dll</HintPath>
3333
</Reference>
3434
<Reference Include="Microsoft.EntityFrameworkCore.Analyzers">
35-
<HintPath>$(LocalEFCoreRepository)\artifacts\bin\EFCore.Relational\Debug\$(EfCoreTargetFramework)\Microsoft.EntityFrameworkCore.Analyzers.dll</HintPath>
35+
<HintPath>$(LocalEFCoreRepository)\artifacts\bin\EFCore.Relational\$(LocalEFCoreRepositoryConfiguration)\$(EfCoreTargetFramework)\Microsoft.EntityFrameworkCore.Analyzers.dll</HintPath>
3636
</Reference>
3737
<Reference Include="Microsoft.EntityFrameworkCore.Relational">
38-
<HintPath>$(LocalEFCoreRepository)\artifacts\bin\EFCore.Relational\Debug\$(EfCoreTargetFramework)\Microsoft.EntityFrameworkCore.Relational.dll</HintPath>
38+
<HintPath>$(LocalEFCoreRepository)\artifacts\bin\EFCore.Relational\$(LocalEFCoreRepositoryConfiguration)\$(EfCoreTargetFramework)\Microsoft.EntityFrameworkCore.Relational.dll</HintPath>
3939
</Reference>
4040

4141
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" />

0 commit comments

Comments
 (0)