Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
bbe8597
Merge branch 'master' into master-servicetitan
AlexUstinov May 7, 2020
f89f4e8
Merge branch 'master' into master-servicetitan
AlexUstinov Jun 9, 2020
9f1287f
Fix of merge issues
AlexUstinov Jun 9, 2020
86ec5bf
Clean UnderlyingConnection on Dispose
AlexUstinov Apr 22, 2020
e9fe187
Squashed commit of the following:
AlexUstinov Jun 9, 2020
2b7bba7
Bump version to v6.0.5-servicetitan
AlexUstinov Jun 9, 2020
fb885bf
Fix of NRE from upstream repository
AlexUstinov Jun 10, 2020
332bcaa
Bump version to v6.0.7-servicetitan
AlexUstinov Jun 10, 2020
e59bb67
Canonic member (#15)
AlexUstinov Jul 7, 2020
241f54c
Bump version to v6.0.8-servicetitan
AlexUstinov Jul 7, 2020
6d640a4
Get rid of GetGenericMethodDefinition method calls because it may lea…
AlexUstinov Jul 9, 2020
ffd0fbe
Bump version to v6.0.9-servicetitan
AlexUstinov Jul 9, 2020
7f5bb69
Merge branch 'master' into master-servicetitan
AlexUstinov Aug 7, 2020
61d8877
Merge branch 'master' into master-servicetitan
AlexUstinov Aug 8, 2020
847f92b
Publishing to azure artifacts. (#17)
avimra Aug 10, 2020
ea3cbee
Use a build number for the package versioning
AlexUstinov Sep 15, 2020
42d044b
Publishing to azure artifacts.
avimra Jul 23, 2020
7197026
Create/overwrite NuGet.Config file before publishing and delete after…
avimra Jul 24, 2020
0351ceb
Reorganize the Directory.Build.props file to keep the related propert…
AlexUstinov Sep 17, 2020
7a14a21
Put symbols into the *.nupkg files instead of *.snupkg
AlexUstinov Sep 17, 2020
0f9c7d0
Reference the servicetitan's repository in the custom build
AlexUstinov Sep 17, 2020
5d65b97
Bump version number to the v7.0.0.1-servicetitan
AlexUstinov Sep 15, 2020
a1dc989
Use the ConcurrentDictionary in the CachingExpressionCompiler impleme…
AlexUstinov Sep 18, 2020
cf56de4
Bump package version to the 6.0.10-servicetitan
AlexUstinov Sep 18, 2020
a35cee1
Use the ConcurrentDictionary in the CachingExpressionCompiler impleme…
AlexUstinov Sep 18, 2020
7ccab9a
Fix the issue with the multiple IncludeProvider's filters in the same…
AlexUstinov Sep 23, 2020
1db3287
Bump version to the v7.0.0.2-servicetitan
AlexUstinov Sep 23, 2020
b3afbed
Creates test open reader problem
alex-kulakov Sep 24, 2020
2a4d6e6
Make DataReader disposing underlying command on reaching the end of a…
AlexUstinov Sep 25, 2020
971ef5f
Merge branch 'master' into async-api-servicetitan
AlexUstinov Sep 25, 2020
95a609a
Merge branch 'open-reader-bugfix' into async-api-servicetitan
AlexUstinov Sep 25, 2020
27d9239
Settle the output paths ambiguity
AlexUstinov Sep 25, 2020
5399ed6
Bump the version number to the v7.0.0.3-servicetitan
AlexUstinov Sep 25, 2020
2fb6181
Merge branch 'master' into async-api-servicetitan
AlexUstinov Oct 6, 2020
8ddec0f
Improve GetCommonBase method performance
AlexUstinov Oct 24, 2020
3c693d8
Fix high memory traffic while reading Metadata.Extensions table
botinko Nov 6, 2020
6febbaa
Bump version to the v7.0.0.4-servicetitan
AlexUstinov Nov 6, 2020
0521c88
Merge branch 'master' into async-api-servicetitan
AlexUstinov Nov 13, 2020
a61ae80
remove enumerator boxing
Nov 10, 2020
8c8c573
Merge remote-tracking branch 'remotes/origin/async-api-servicetitan' …
AlexUstinov Nov 17, 2020
8695eda
Merge branch 'master' into async-api-servicetitan
AlexUstinov Dec 23, 2020
140c1aa
Merge branch 'async-api-servicetitan' into master-servicetitan
AlexUstinov Jan 14, 2021
abab874
Merge branch 'master' into master-servicetitan
AlexUstinov Jan 14, 2021
999e823
Normalize all the line endings
AlexUstinov Jan 14, 2021
b5f41de
Bump the version to v7.0.0.5-servicetitan
AlexUstinov Jan 14, 2021
64d1b85
Fix NRE in BulkOperations.Operation() constructor
SergeiPavlov Jan 15, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 7 additions & 9 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -42,16 +42,16 @@
$([MSBuild]::GetDirectoryNameOfFileAbove('$(MSBuildThisFileDirectory)', 'Orm.sln'))))</SolutionDir>
<Configuration Condition="$(Configuration) == ''">Debug</Configuration>
<ArtifactsDir Condition="'$(ArtifactsDir)' == ''">$(SolutionDir)_Build\</ArtifactsDir>
<BaseIntermediateOutputPath>$([System.IO.Path]::GetFullPath('$(ArtifactsDir)obj\$(Configuration)\$(MSBuildProjectName)'))\</BaseIntermediateOutputPath>
<BaseOutputPath >$([System.IO.Path]::GetFullPath('$(ArtifactsDir)bin\$(Configuration)'))\</BaseOutputPath>
<BaseOutputPath Condition="$(MSBuildProjectName.Contains('Tests'))">$([System.IO.Path]::GetFullPath('$(ArtifactsDir)tests'))\</BaseOutputPath>
<OutputPath>$(BaseOutputPath)</OutputPath>
<BaseIntermediateOutputPath>$(ArtifactsDir)obj\$(MSBuildProjectName)\</BaseIntermediateOutputPath>
<IntermediateOutputPath>$(BaseIntermediateOutputPath)$(Configuration)\</IntermediateOutputPath>
<BaseOutputPath>$(ArtifactsDir)bin\$(Configuration)\</BaseOutputPath>
<BaseOutputPath Condition="$(MSBuildProjectName.Contains('Tests'))">$(ArtifactsDir)tests\</BaseOutputPath>
<OutputPath>$(BaseOutputPath)lib\</OutputPath>
<MSBuildProjectExtensionsPath>$(BaseIntermediateOutputPath)</MSBuildProjectExtensionsPath>
<ProjectAssetsFile>$(MSBuildProjectExtensionsPath)project.assets.json</ProjectAssetsFile>
<ProjectAssetsCacheFile>$(MSBuildProjectExtensionsPath)$(MSBuildProjectName).assets.cache</ProjectAssetsCacheFile>
<OrmKeyFile>$(SolutionDir)Orm\Orm.snk</OrmKeyFile>
</PropertyGroup>

<!-- Populate standard properties. -->
<PropertyGroup>
<Product>$(DoProductName)</Product>
Expand All @@ -65,14 +65,12 @@
<PackageIcon>do-nuget.png</PackageIcon>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageTags>DataObjects.Net ORM BLL Persistence</PackageTags>
<PackageOutputPath>$(MSBuildThisFileDirectory)_Build\$(Configuration)\packages\</PackageOutputPath>
<RepositoryUrl>https://github.com/DataObjects-NET/dataobjects-net</RepositoryUrl>
<PackageOutputPath>$(BaseOutputPath)packages\</PackageOutputPath>
<RepositoryUrl>https://github.com/servicetitan/dataobjects-net</RepositoryUrl>
<RepositoryType>git</RepositoryType>

<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
<GeneratePackageOnBuild Condition="$(DoGeneratePackage) == 'true' AND '$(Configuration)' == 'Release'">true</GeneratePackageOnBuild>
<IncludeSymbols Condition="$(GeneratePackageOnBuild) == 'true'">true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
Expand Down
3 changes: 1 addition & 2 deletions Extensions/TestCommon/TestCommon.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputPath>$(SolutionDir)_Build\$(Configuration)\lib\</OutputPath>
<DocumentationFile />
</PropertyGroup>
<PropertyGroup>
Expand All @@ -21,4 +20,4 @@
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
</Project>
</Project>
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputPath>$(SolutionDir)_Build\$(Configuration)\lib\</OutputPath>
<DocumentationFile />
</PropertyGroup>
<Import Project="$(SolutionDir)MSBuild\DataObjects.Net.InternalBuild.targets" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,13 @@ protected Operation(QueryProvider queryProvider)
var entityType = typeof (T);
var session = queryProvider.Session;
DomainHandler = session.Domain.Services.Get<DomainHandler>();
QueryBuilder = session.Services.Get<QueryBuilder>();
TypeInfo = GetTypeInfo(entityType);
var mapping = session.StorageNode.Mapping;
PrimaryIndexes = TypeInfo.AffectedIndexes
.Where(i => i.IsPrimary)
.Select(i => new PrimaryIndexMapping(i, mapping[i.ReflectedType]))
.ToArray();
QueryBuilder = session.Services.Get<QueryBuilder>();
}
}
}
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<IsPackable>true</IsPackable>
<OutputPath>$(SolutionDir)_Build\$(Configuration)\lib\</OutputPath>
<DocumentationFile>$(SolutionDir)_Build\$(Configuration)\lib\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<DocumentationFile>$(OutputPath)$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup>
<PackageId>Xtensive.Orm.BulkOperations</PackageId>
Expand All @@ -22,4 +21,4 @@
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
</Project>
</Project>
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputPath>$(SolutionDir)_Build\$(Configuration)\lib\</OutputPath>
<DocumentationFile />
</PropertyGroup>
<Import Project="$(SolutionDir)MSBuild\DataObjects.Net.InternalBuild.targets" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<IsPackable>true</IsPackable>
<OutputPath>$(SolutionDir)_Build\$(Configuration)\lib\</OutputPath>
<DocumentationFile>$(SolutionDir)_Build\$(Configuration)\lib\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<DocumentationFile>$(OutputPath)$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup>
<PackageId>Xtensive.Orm.Localization</PackageId>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputPath>$(SolutionDir)_Build\$(Configuration)\lib\</OutputPath>
<DocumentationFile />
</PropertyGroup>
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<IsPackable>true</IsPackable>
<OutputPath>$(SolutionDir)_Build\$(Configuration)\lib\</OutputPath>
<DocumentationFile>$(SolutionDir)_Build\$(Configuration)\lib\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<DocumentationFile>$(OutputPath)$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup>
<PackageId>Xtensive.Orm.Logging.NLog</PackageId>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputPath>$(SolutionDir)_Build\$(Configuration)\lib\</OutputPath>
<DocumentationFile />
</PropertyGroup>
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<IsPackable>true</IsPackable>
<OutputPath>$(SolutionDir)_Build\$(Configuration)\lib\</OutputPath>
<DocumentationFile>$(SolutionDir)_Build\$(Configuration)\lib\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<DocumentationFile>$(OutputPath)$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup>
<PackageId>Xtensive.Orm.Logging.log4net</PackageId>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputPath>$(SolutionDir)_Build\$(Configuration)\lib\</OutputPath>
<DocumentationFile />
</PropertyGroup>
<Import Project="$(SolutionDir)MSBuild\DataObjects.Net.InternalBuild.targets" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<IsPackable>true</IsPackable>
<OutputPath>$(SolutionDir)_Build\$(Configuration)\lib\</OutputPath>
<DocumentationFile>$(SolutionDir)_Build\$(Configuration)\lib\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<DocumentationFile>$(OutputPath)$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup>
<PackageId>Xtensive.Orm.Reprocessing</PackageId>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputPath>$(SolutionDir)_Build\$(Configuration)\lib\</OutputPath>
<DocumentationFile />
</PropertyGroup>
<Import Project="$(SolutionDir)MSBuild\DataObjects.Net.InternalBuild.targets" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<IsPackable>true</IsPackable>
<OutputPath>$(SolutionDir)_Build\$(Configuration)\lib\</OutputPath>
<DocumentationFile>$(SolutionDir)_Build\$(Configuration)\lib\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<DocumentationFile>$(OutputPath)$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup>
<PackageId>Xtensive.Orm.Security</PackageId>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputPath>$(SolutionDir)_Build\$(Configuration)\lib\</OutputPath>
<DocumentationFile />
<Optimize>false</Optimize>
</PropertyGroup>
Expand All @@ -22,4 +21,4 @@
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
</Project>
</Project>
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<IsPackable>true</IsPackable>
<OutputPath>$(SolutionDir)_Build\$(Configuration)\lib\</OutputPath>
<DocumentationFile>$(SolutionDir)_Build\$(Configuration)\lib\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<DocumentationFile>$(OutputPath)$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup>
<PackageId>Xtensive.Orm.Tracking</PackageId>
Expand Down
3 changes: 1 addition & 2 deletions Extensions/Xtensive.Orm.Web/Xtensive.Orm.Web.csproj
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<IsPackable>true</IsPackable>
<OutputPath>$(SolutionDir)_Build\$(Configuration)\lib\</OutputPath>
<DocumentationFile>$(SolutionDir)_Build\$(Configuration)\lib\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<DocumentationFile>$(OutputPath)$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup>
<PackageId>Xtensive.Orm.Web</PackageId>
Expand Down
2 changes: 1 addition & 1 deletion MSBuild/DataObjects.Net.InternalBuild.targets
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="15.0">

<PropertyGroup>
<XtensiveOrmPath>$(SolutionDir)_Build\$(Configuration)\</XtensiveOrmPath>
<XtensiveOrmPath>$(ArtifactsDir)bin\$(Configuration)\</XtensiveOrmPath>
</PropertyGroup>

<Import Project="$(MSBuildThisFileDirectory)DataObjects.Net.targets" />
Expand Down
2 changes: 1 addition & 1 deletion MSBuild/DataObjects.Net.targets
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<PropertyGroup>
<CompileDependsOn>$(CompileDependsOn);XtensiveOrmBuild</CompileDependsOn>
<XtensiveOrmPath Condition="'$(XtensiveOrmPath)'==''">$(MSBuildThisFileDirectory)</XtensiveOrmPath>
<XtensiveOrmPath Condition="!HasTrailingSlash('$(XtensiveOrmPath)')">$(XtensiveOrmPath)</XtensiveOrmPath>
<XtensiveOrmPath Condition="!HasTrailingSlash('$(XtensiveOrmPath)')">$(XtensiveOrmPath)\</XtensiveOrmPath>
<XtensiveOrmWeaver Condition="'$(XtensiveOrmWeaver)'==''">$(XtensiveOrmPath)tools\weaver\Xtensive.Orm.Weaver.dll</XtensiveOrmWeaver>
<XtensiveOrmBuildDependsOn>$(XtensiveOrmBuildDependsOn)</XtensiveOrmBuildDependsOn>
</PropertyGroup>
Expand Down
7 changes: 3 additions & 4 deletions Orm/Xtensive.Orm.Firebird/Xtensive.Orm.Firebird.csproj
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<IsPackable>true</IsPackable>
<OutputPath>$(SolutionDir)_Build\$(Configuration)\lib\</OutputPath>
<DocumentationFile>$(SolutionDir)_Build\$(Configuration)\lib\$(TargetFramework)\Xtensive.Orm.Firebird.xml</DocumentationFile>
<DocumentationFile>$(OutputPath)$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup>
<RootNamespace>Xtensive</RootNamespace>
Expand All @@ -28,4 +27,4 @@
<DependentUpon>Strings.resx</DependentUpon>
</Compile>
</ItemGroup>
</Project>
</Project>
1 change: 0 additions & 1 deletion Orm/Xtensive.Orm.Manual/Xtensive.Orm.Manual.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
<PropertyGroup>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<IsPackable>false</IsPackable>
<OutputPath>$(SolutionDir)_Build\$(Configuration)\lib\</OutputPath>
</PropertyGroup>
<PropertyGroup>
<RootNamespace>Xtensive</RootNamespace>
Expand Down
7 changes: 3 additions & 4 deletions Orm/Xtensive.Orm.MySql/Xtensive.Orm.MySql.csproj
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<IsPackable>true</IsPackable>
<OutputPath>$(SolutionDir)_Build\$(Configuration)\lib\</OutputPath>
<DocumentationFile>$(SolutionDir)_Build\$(Configuration)\lib\$(TargetFramework)\Xtensive.Orm.MySql.xml</DocumentationFile>
<DocumentationFile>$(OutputPath)$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup>
<RootNamespace>Xtensive</RootNamespace>
Expand Down Expand Up @@ -35,4 +34,4 @@
<PackageReference Include="MySql.Data" Version="8.0.19" />
<PackageReference Include="System.Xml.XPath.XmlDocument" Version="4.3.0" />
</ItemGroup>
</Project>
</Project>
5 changes: 2 additions & 3 deletions Orm/Xtensive.Orm.Oracle/Xtensive.Orm.Oracle.csproj
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<IsPackable>true</IsPackable>
<OutputPath>$(SolutionDir)_Build\$(Configuration)\lib\</OutputPath>
<DocumentationFile>$(SolutionDir)_Build\$(Configuration)\lib\$(TargetFramework)\Xtensive.Orm.Oracle.xml</DocumentationFile>
<DocumentationFile>$(OutputPath)$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup>
<RootNamespace>Xtensive</RootNamespace>
Expand Down
5 changes: 2 additions & 3 deletions Orm/Xtensive.Orm.PostgreSql/Xtensive.Orm.PostgreSql.csproj
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<IsPackable>true</IsPackable>
<OutputPath>$(SolutionDir)_Build\$(Configuration)\lib\</OutputPath>
<DocumentationFile>$(SolutionDir)_Build\$(Configuration)\lib\$(TargetFramework)\Xtensive.Orm.PostgreSql.xml</DocumentationFile>
<DocumentationFile>$(OutputPath)$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup>
<RootNamespace>Xtensive</RootNamespace>
Expand Down Expand Up @@ -32,4 +31,4 @@
<Link>Properties\Visibility.cs</Link>
</Compile>
</ItemGroup>
</Project>
</Project>
3 changes: 1 addition & 2 deletions Orm/Xtensive.Orm.SqlServer/Xtensive.Orm.SqlServer.csproj
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<IsPackable>true</IsPackable>
<OutputPath>$(SolutionDir)_Build\$(Configuration)\lib\</OutputPath>
<DocumentationFile>$(SolutionDir)_Build\$(Configuration)\lib\$(TargetFramework)\Xtensive.Orm.SqlServer.xml</DocumentationFile>
<DocumentationFile>$(OutputPath)$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup>
<RootNamespace>Xtensive</RootNamespace>
Expand Down
7 changes: 3 additions & 4 deletions Orm/Xtensive.Orm.Sqlite/Xtensive.Orm.Sqlite.csproj
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<IsPackable>true</IsPackable>
<OutputPath>$(SolutionDir)_Build\$(Configuration)\lib\</OutputPath>
<DocumentationFile>$(SolutionDir)_Build\$(Configuration)\lib\$(TargetFramework)\Xtensive.Orm.Sqlite.xml</DocumentationFile>
<DocumentationFile>$(OutputPath)$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup>
<RootNamespace>Xtensive</RootNamespace>
Expand Down Expand Up @@ -33,4 +32,4 @@
<DependentUpon>Strings.resx</DependentUpon>
</Compile>
</ItemGroup>
</Project>
</Project>
3 changes: 1 addition & 2 deletions Orm/Xtensive.Orm.Tests.Core/Xtensive.Orm.Tests.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
<PropertyGroup>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<IsPackable>false</IsPackable>
<OutputPath>$(SolutionDir)_Build\$(Configuration)\lib\</OutputPath>
</PropertyGroup>
<PropertyGroup>
<RootNamespace>Xtensive</RootNamespace>
Expand All @@ -28,4 +27,4 @@
<PackageReference Include="NUnit3TestAdapter" Version="3.15.0" />
</ItemGroup>

</Project>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
<PropertyGroup>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<IsPackable>false</IsPackable>
<OutputPath>$(SolutionDir)_Build\$(Configuration)\lib\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup>
Expand Down Expand Up @@ -39,4 +38,4 @@
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>
</Project>
3 changes: 1 addition & 2 deletions Orm/Xtensive.Orm.Tests.Sql/Xtensive.Orm.Tests.Sql.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
<PropertyGroup>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<IsPackable>false</IsPackable>
<OutputPath>$(SolutionDir)_Build\$(Configuration)\lib\</OutputPath>
</PropertyGroup>
<PropertyGroup>
<RootNamespace>Xtensive</RootNamespace>
Expand Down Expand Up @@ -41,4 +40,4 @@
</Content>
<Content Include="MySQL\SakilaDb\sakila-schema.sql" />
</ItemGroup>
</Project>
</Project>
Loading