Skip to content

Commit 752c05b

Browse files
committed
Adds renormalized files after file ending change
1 parent c685d5c commit 752c05b

File tree

3,363 files changed

+596205
-596205
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,363 files changed

+596205
-596205
lines changed

.gitignore

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
1-
*.suo
2-
*.user
3-
*.csproj.user
4-
*.sln.cache
5-
*.cache
6-
*.resharper
7-
*.ReSharper
8-
*.resharperoptions
9-
_ReSharper.*
10-
*.vs10x
11-
*.DotSettings
12-
*.exe
13-
*.dll
14-
*.obj
15-
*.pdb
16-
*.HxS
17-
*.chm
18-
*.xml
19-
*.mshc
20-
*.orig
21-
*.log
22-
bin
23-
Bin
24-
obj
25-
_Build
26-
_Work
27-
.vs
28-
.idea
29-
User.Directory.Build.props
1+
*.suo
2+
*.user
3+
*.csproj.user
4+
*.sln.cache
5+
*.cache
6+
*.resharper
7+
*.ReSharper
8+
*.resharperoptions
9+
_ReSharper.*
10+
*.vs10x
11+
*.DotSettings
12+
*.exe
13+
*.dll
14+
*.obj
15+
*.pdb
16+
*.HxS
17+
*.chm
18+
*.xml
19+
*.mshc
20+
*.orig
21+
*.log
22+
bin
23+
Bin
24+
obj
25+
_Build
26+
_Work
27+
.vs
28+
.idea
29+
User.Directory.Build.props

ChangeLog/0.0.0.txt

Lines changed: 479 additions & 479 deletions
Large diffs are not rendered by default.

ChangeLog/0.1.0_Beta_1.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
[main] Added new overloads for loading DomainConfiguration and LoggingConfiguration
2-
[main] Added LogManager.Initialize(System.Configuration.Configuration)
1+
[main] Added new overloads for loading DomainConfiguration and LoggingConfiguration
2+
[main] Added LogManager.Initialize(System.Configuration.Configuration)
33
[sqlserver] No support for SqlGeometry and SqlGeography for now

ChangeLog/0.1.0_Beta_2.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[main] Removed DomainConfiguration.NativeLibraryCacheFolder because SQLite no longer needs it.
2-
[mysql] Cerain error codes were handled in order to arrange them with certain type instead of Unknown
3-
[postgresql] DateTimeOffset is not supported as far as client library has no support for Zone part of TimeStampTZ
1+
[main] Removed DomainConfiguration.NativeLibraryCacheFolder because SQLite no longer needs it.
2+
[mysql] Cerain error codes were handled in order to arrange them with certain type instead of Unknown
3+
[postgresql] DateTimeOffset is not supported as far as client library has no support for Zone part of TimeStampTZ
44
[postgresql] Maximum scale of Decimals was reduced down to 27

ChangeLog/0.1.0_Beta_3.txt

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
[main] Added versioning policy allowing to set up certain rules for entity version increasing
2-
[main] Fixed problems with setting Catalog.Name, Catalog.DbName, CatalogNode.Name and CatalogNode.DbName properties
3-
[main] Fixed certain cases when grouping by an Entity field caused wrong results
4-
[main] Persisting of changes to database while EntitySet enumeration doesn't break enumeration
5-
[main] Fixed initialization of fields of non-persistent types within queries
6-
[main] Entity.Lock() locks correct raws in database
7-
[main] DomainUpgradeMode.Validate mode became stricter to avoid data corruption
8-
[firebird] Made column types extraction be culture-independant
9-
[sqlserver] Fixed extraction of default value of table columns
10-
[sqlserver] Improved default schema detection in driver factory
11-
[sqlserver] Updated Azure provider to Sql Server v12 provider
1+
[main] Added versioning policy allowing to set up certain rules for entity version increasing
2+
[main] Fixed problems with setting Catalog.Name, Catalog.DbName, CatalogNode.Name and CatalogNode.DbName properties
3+
[main] Fixed certain cases when grouping by an Entity field caused wrong results
4+
[main] Persisting of changes to database while EntitySet enumeration doesn't break enumeration
5+
[main] Fixed initialization of fields of non-persistent types within queries
6+
[main] Entity.Lock() locks correct raws in database
7+
[main] DomainUpgradeMode.Validate mode became stricter to avoid data corruption
8+
[firebird] Made column types extraction be culture-independant
9+
[sqlserver] Fixed extraction of default value of table columns
10+
[sqlserver] Improved default schema detection in driver factory
11+
[sqlserver] Updated Azure provider to Sql Server v12 provider
1212
[weaver] Project building fails when weaving ends up with an error

ChangeLog/0.1.0_Beta_4.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
[main] Introduced asynchronous session opening
2-
[main] Introduced bunch of QueryEndpoint.ExecuteAsync() methods
3-
[main] Add .AsAsyncTask() extensions for running queries asynchronously
4-
[postgresql] Fixed extraction of full-text indexes for certain scenarios
5-
[postgresql] Set upper limit for precision of decimals to 49 to handle problems in Npgsql
6-
[postgresql] Fields of unsigned types no longer cause exception on saving them to database
1+
[main] Introduced asynchronous session opening
2+
[main] Introduced bunch of QueryEndpoint.ExecuteAsync() methods
3+
[main] Add .AsAsyncTask() extensions for running queries asynchronously
4+
[postgresql] Fixed extraction of full-text indexes for certain scenarios
5+
[postgresql] Set upper limit for precision of decimals to 49 to handle problems in Npgsql
6+
[postgresql] Fields of unsigned types no longer cause exception on saving them to database
77
[postgresql] Enum fields no longer cause exception on saving them to database

ChangeLog/mkchangelog.ps1

Lines changed: 41 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,41 @@
1-
$useLegacy = ($PSVersionTable.PSVersion -as [version]) -le ("2.0" -as [version])
2-
if ($useLegacy){
3-
$inputDir = Split-Path -Parent $MyInvocation.MyCommand.Path
4-
}
5-
else {
6-
$inputDir = $PSScriptRoot
7-
}
8-
$theRootestRoot = Split-Path -Parent $inputDir;
9-
$outputDir = Join-Path -Path $theRootestRoot -ChildPath \_Build\ProductInfo
10-
$changeLogFile = Join-Path -Path $outputDir -ChildPath "ChangeLog.txt"
11-
$releaseNotesFile = Join-Path -Path $outputDir -ChildPath "ReleaseNotes.txt"
12-
13-
if (-not (Test-Path $outputDir)) { New-Item $outputDir -Type directory -Force }
14-
if (Test-Path $changeLogFile) { Remove-Item $changeLogFile -Force }
15-
if (Test-Path $releaseNotesFile) { Remove-Item $releaseNotesFile -Force }
16-
17-
#perform right files order
18-
$items = Get-ChildItem -Path $inputDir -Filter *.txt |
19-
Select-Object -Property @{Name = "FileName"; Expression = {$_.BaseName}},
20-
@{Name = "File"; Expression = {$_}},
21-
@{Name = "ReleaseVersion"; Expression= {($_.BaseName -split "_", 2)[0] -as [Version]}},
22-
@{Name ="ReleaseName"; Expression= {($_.BaseName -split "_", 2)[1] }},
23-
@{Name ="FixedReleaseName"; Expression = {($_.BaseName -split "_", 2)[1] -replace "Z_Final", "Final"}} |
24-
Sort-Object -Property @{Expression="ReleaseVersion";Descending=$true}, @{Expression="ReleaseName";Descending=$true}
25-
26-
#compose ChangeLog and ReleaseInfo files
27-
Foreach ($complexObject in $items) {
28-
$isInitial = $complexObject.FileName -eq "0.0.0"
29-
if($isInitial){
30-
Add-Content $changeLogFile ( Get-Content $complexObject.File.FullName)
31-
Add-Content $changeLogFile ""
32-
}
33-
else{
34-
#on first itteration create ReleaseNotes
35-
if (-not(Test-Path $releaseNotesFile)) { Add-Content $releaseNotesFile (Get-Content $complexObject.File.FullName) }
36-
Add-Content $changeLogFile ("Changes in {0} {1}" -f $complexObject.ReleaseVersion, $complexObject.FixedReleaseName)
37-
Add-Content $changeLogFile ""
38-
Add-Content $changeLogFile ( Get-Content $complexObject.File.FullName)
39-
Add-Content $changeLogFile ""
40-
}
41-
}
1+
$useLegacy = ($PSVersionTable.PSVersion -as [version]) -le ("2.0" -as [version])
2+
if ($useLegacy){
3+
$inputDir = Split-Path -Parent $MyInvocation.MyCommand.Path
4+
}
5+
else {
6+
$inputDir = $PSScriptRoot
7+
}
8+
$theRootestRoot = Split-Path -Parent $inputDir;
9+
$outputDir = Join-Path -Path $theRootestRoot -ChildPath \_Build\ProductInfo
10+
$changeLogFile = Join-Path -Path $outputDir -ChildPath "ChangeLog.txt"
11+
$releaseNotesFile = Join-Path -Path $outputDir -ChildPath "ReleaseNotes.txt"
12+
13+
if (-not (Test-Path $outputDir)) { New-Item $outputDir -Type directory -Force }
14+
if (Test-Path $changeLogFile) { Remove-Item $changeLogFile -Force }
15+
if (Test-Path $releaseNotesFile) { Remove-Item $releaseNotesFile -Force }
16+
17+
#perform right files order
18+
$items = Get-ChildItem -Path $inputDir -Filter *.txt |
19+
Select-Object -Property @{Name = "FileName"; Expression = {$_.BaseName}},
20+
@{Name = "File"; Expression = {$_}},
21+
@{Name = "ReleaseVersion"; Expression= {($_.BaseName -split "_", 2)[0] -as [Version]}},
22+
@{Name ="ReleaseName"; Expression= {($_.BaseName -split "_", 2)[1] }},
23+
@{Name ="FixedReleaseName"; Expression = {($_.BaseName -split "_", 2)[1] -replace "Z_Final", "Final"}} |
24+
Sort-Object -Property @{Expression="ReleaseVersion";Descending=$true}, @{Expression="ReleaseName";Descending=$true}
25+
26+
#compose ChangeLog and ReleaseInfo files
27+
Foreach ($complexObject in $items) {
28+
$isInitial = $complexObject.FileName -eq "0.0.0"
29+
if($isInitial){
30+
Add-Content $changeLogFile ( Get-Content $complexObject.File.FullName)
31+
Add-Content $changeLogFile ""
32+
}
33+
else{
34+
#on first itteration create ReleaseNotes
35+
if (-not(Test-Path $releaseNotesFile)) { Add-Content $releaseNotesFile (Get-Content $complexObject.File.FullName) }
36+
Add-Content $changeLogFile ("Changes in {0} {1}" -f $complexObject.ReleaseVersion, $complexObject.FixedReleaseName)
37+
Add-Content $changeLogFile ""
38+
Add-Content $changeLogFile ( Get-Content $complexObject.File.FullName)
39+
Add-Content $changeLogFile ""
40+
}
41+
}

Directory.Build.props

Lines changed: 82 additions & 82 deletions
Original file line numberDiff line numberDiff line change
@@ -1,82 +1,82 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
4-
<Import Project="$(MSBuildThisFileDirectory)Version.props" />
5-
6-
<!-- Compute intermediate values. To avoid conflicts name all custom variables with Do prefix. -->
7-
<PropertyGroup>
8-
<DoBuildNumber>$(BUILD_NUMBER)</DoBuildNumber>
9-
<DoBuildNumber Condition="'$(DoBuildNumber)'==''">0</DoBuildNumber>
10-
<DoBuildYear>$([System.DateTime]::Today.Year)</DoBuildYear>
11-
<DoProductName>DataObjects.Net</DoProductName>
12-
<DoProductAuthors>Xtensive LLC and contributors</DoProductAuthors>
13-
<DoProductCopyright>2003-$(DoBuildYear) $(DoProductAuthors)</DoProductCopyright>
14-
<DoVersionSuffix Condition="'$(DoVersionSuffix)'=='dev'">dev-$(DoBuildNumber)</DoVersionSuffix>
15-
<DoMajor>$([System.Version]::new($(DoVersion)).Major)</DoMajor>
16-
<DoMinor>$([System.Version]::new($(DoVersion)).Minor)</DoMinor>
17-
<DoPatch>$([System.Version]::new($(DoVersion)).Build)</DoPatch>
18-
<DoVersionName>$(DoMajor).$(DoMinor).$(DoPatch)</DoVersionName>
19-
<DoVersionName Condition="'$(DoVersionSuffix)'!=''">$(DoVersionName)-$(DoVersionSuffix)</DoVersionName>
20-
<DoPackageIcon>$(MSBuildThisFileDirectory)do-nuget.png</DoPackageIcon>
21-
<DoRevFile>$(MSBuildThisFileDirectory)_Build\rev.txt</DoRevFile>
22-
</PropertyGroup>
23-
24-
<PropertyGroup>
25-
<LangVersion>8.0</LangVersion>
26-
<SolutionDir Condition="$(SolutionDir) == ''">$(MSBuildThisFileDirectory.TrimEnd('\').TrimEnd('/'))\</SolutionDir>
27-
<Configuration Condition="$(Configuration) == ''">Debug</Configuration>
28-
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
29-
<NoLogo>true</NoLogo>
30-
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
31-
<ArtifactsDir Condition="'$(ArtifactsDir)'==''">$(SolutionDir)_Build\</ArtifactsDir>
32-
<BaseIntermediateOutputPath>$([System.IO.Path]::GetFullPath('$(ArtifactsDir)obj\$(Configuration)\$(MSBuildProjectName)'))\</BaseIntermediateOutputPath>
33-
<BaseOutputPath >$([System.IO.Path]::GetFullPath('$(ArtifactsDir)bin\$(Configuration)'))\</BaseOutputPath>
34-
<BaseOutputPath Condition="$(MSBuildProjectName.Contains('Tests'))">$([System.IO.Path]::GetFullPath('$(ArtifactsDir)tests'))\</BaseOutputPath>
35-
<OutputPath>$(BaseOutputPath)</OutputPath>
36-
<MSBuildProjectExtensionsPath>$(BaseIntermediateOutputPath)</MSBuildProjectExtensionsPath>
37-
<ProjectAssetsFile>$(MSBuildProjectExtensionsPath)project.assets.json</ProjectAssetsFile>
38-
<ProjectAssetsCacheFile>$(MSBuildProjectExtensionsPath)$(MSBuildProjectName).assets.cache</ProjectAssetsCacheFile>
39-
</PropertyGroup>
40-
41-
<PropertyGroup>
42-
<GeneratePackageOnBuild Condition="$(MSBuildProjectName) == 'Xtensive.Orm.Weaver'">false</GeneratePackageOnBuild>
43-
<GeneratePackageOnBuild Condition="$(MSBuildProjectName) == 'Xtensive.Orm.Manual'">false</GeneratePackageOnBuild>
44-
<GeneratePackageOnBuild Condition="$(MSBuildProjectName) == 'TestCommon'">false</GeneratePackageOnBuild>
45-
<GeneratePackageOnBuild Condition="$(MSBuildProjectName.Contains('Tests')) == 'true'">false</GeneratePackageOnBuild>
46-
<GeneratePackageOnBuild Condition="$(GeneratePackageOnBuild)=='' AND '$(Configuration)' == 'Release'">true</GeneratePackageOnBuild>
47-
48-
<IncludeSymbols Condition="$(GeneratePackageOnBuild) == 'true'">true</IncludeSymbols>
49-
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
50-
<EmbedUntrackedSources>true</EmbedUntrackedSources>
51-
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
52-
</PropertyGroup>
53-
<ItemGroup>
54-
<SourceRoot Include="$(MSBuildThisFileDirectory)/"/>
55-
<PackageReference Condition="$(GeneratePackageOnBuild) == 'true'"
56-
Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All"/>
57-
</ItemGroup>
58-
59-
<!-- Populate standard properties. -->
60-
<PropertyGroup>
61-
<Product>$(DoProductName)</Product>
62-
<Company>$(DoProductAuthors)</Company>
63-
<Authors>$(DoProductAuthors)</Authors>
64-
<Version>$(DoVersionName)</Version>
65-
<AssemblyVersion>$(DoMajor).$(DoMinor).0.0</AssemblyVersion>
66-
<FileVersion>$(DoMajor).$(DoMinor).$(DoPatch).$(DoBuildNumber)</FileVersion>
67-
<Copyright>$(DoProductCopyright)</Copyright>
68-
<PackageProjectUrl>https://dataobjects.net/</PackageProjectUrl>
69-
<PackageIcon>do-nuget.png</PackageIcon>
70-
<PackageLicense>MIT</PackageLicense>
71-
<PackageTags>DataObjects.Net ORM BLL Persistence</PackageTags>
72-
<PackageOutputPath>$(MSBuildThisFileDirectory)_Build\$(Configuration)\packages</PackageOutputPath>
73-
<RepositoryUrl>https://github.com/DataObjects-NET/dataobjects-net</RepositoryUrl>
74-
<RepositoryType>git</RepositoryType>
75-
</PropertyGroup>
76-
77-
<ItemGroup>
78-
<None Include="$(DoPackageIcon)" Pack="true" PackagePath="." Visible="false" />
79-
</ItemGroup>
80-
81-
<Import Condition="Exists('User.Directory.Build.props')" Project="User.Directory.Build.props" />
82-
</Project>
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
4+
<Import Project="$(MSBuildThisFileDirectory)Version.props" />
5+
6+
<!-- Compute intermediate values. To avoid conflicts name all custom variables with Do prefix. -->
7+
<PropertyGroup>
8+
<DoBuildNumber>$(BUILD_NUMBER)</DoBuildNumber>
9+
<DoBuildNumber Condition="'$(DoBuildNumber)'==''">0</DoBuildNumber>
10+
<DoBuildYear>$([System.DateTime]::Today.Year)</DoBuildYear>
11+
<DoProductName>DataObjects.Net</DoProductName>
12+
<DoProductAuthors>Xtensive LLC and contributors</DoProductAuthors>
13+
<DoProductCopyright>2003-$(DoBuildYear) $(DoProductAuthors)</DoProductCopyright>
14+
<DoVersionSuffix Condition="'$(DoVersionSuffix)'=='dev'">dev-$(DoBuildNumber)</DoVersionSuffix>
15+
<DoMajor>$([System.Version]::new($(DoVersion)).Major)</DoMajor>
16+
<DoMinor>$([System.Version]::new($(DoVersion)).Minor)</DoMinor>
17+
<DoPatch>$([System.Version]::new($(DoVersion)).Build)</DoPatch>
18+
<DoVersionName>$(DoMajor).$(DoMinor).$(DoPatch)</DoVersionName>
19+
<DoVersionName Condition="'$(DoVersionSuffix)'!=''">$(DoVersionName)-$(DoVersionSuffix)</DoVersionName>
20+
<DoPackageIcon>$(MSBuildThisFileDirectory)do-nuget.png</DoPackageIcon>
21+
<DoRevFile>$(MSBuildThisFileDirectory)_Build\rev.txt</DoRevFile>
22+
</PropertyGroup>
23+
24+
<PropertyGroup>
25+
<LangVersion>8.0</LangVersion>
26+
<SolutionDir Condition="$(SolutionDir) == ''">$(MSBuildThisFileDirectory.TrimEnd('\').TrimEnd('/'))\</SolutionDir>
27+
<Configuration Condition="$(Configuration) == ''">Debug</Configuration>
28+
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
29+
<NoLogo>true</NoLogo>
30+
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
31+
<ArtifactsDir Condition="'$(ArtifactsDir)'==''">$(SolutionDir)_Build\</ArtifactsDir>
32+
<BaseIntermediateOutputPath>$([System.IO.Path]::GetFullPath('$(ArtifactsDir)obj\$(Configuration)\$(MSBuildProjectName)'))\</BaseIntermediateOutputPath>
33+
<BaseOutputPath >$([System.IO.Path]::GetFullPath('$(ArtifactsDir)bin\$(Configuration)'))\</BaseOutputPath>
34+
<BaseOutputPath Condition="$(MSBuildProjectName.Contains('Tests'))">$([System.IO.Path]::GetFullPath('$(ArtifactsDir)tests'))\</BaseOutputPath>
35+
<OutputPath>$(BaseOutputPath)</OutputPath>
36+
<MSBuildProjectExtensionsPath>$(BaseIntermediateOutputPath)</MSBuildProjectExtensionsPath>
37+
<ProjectAssetsFile>$(MSBuildProjectExtensionsPath)project.assets.json</ProjectAssetsFile>
38+
<ProjectAssetsCacheFile>$(MSBuildProjectExtensionsPath)$(MSBuildProjectName).assets.cache</ProjectAssetsCacheFile>
39+
</PropertyGroup>
40+
41+
<PropertyGroup>
42+
<GeneratePackageOnBuild Condition="$(MSBuildProjectName) == 'Xtensive.Orm.Weaver'">false</GeneratePackageOnBuild>
43+
<GeneratePackageOnBuild Condition="$(MSBuildProjectName) == 'Xtensive.Orm.Manual'">false</GeneratePackageOnBuild>
44+
<GeneratePackageOnBuild Condition="$(MSBuildProjectName) == 'TestCommon'">false</GeneratePackageOnBuild>
45+
<GeneratePackageOnBuild Condition="$(MSBuildProjectName.Contains('Tests')) == 'true'">false</GeneratePackageOnBuild>
46+
<GeneratePackageOnBuild Condition="$(GeneratePackageOnBuild)=='' AND '$(Configuration)' == 'Release'">true</GeneratePackageOnBuild>
47+
48+
<IncludeSymbols Condition="$(GeneratePackageOnBuild) == 'true'">true</IncludeSymbols>
49+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
50+
<EmbedUntrackedSources>true</EmbedUntrackedSources>
51+
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
52+
</PropertyGroup>
53+
<ItemGroup>
54+
<SourceRoot Include="$(MSBuildThisFileDirectory)/"/>
55+
<PackageReference Condition="$(GeneratePackageOnBuild) == 'true'"
56+
Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All"/>
57+
</ItemGroup>
58+
59+
<!-- Populate standard properties. -->
60+
<PropertyGroup>
61+
<Product>$(DoProductName)</Product>
62+
<Company>$(DoProductAuthors)</Company>
63+
<Authors>$(DoProductAuthors)</Authors>
64+
<Version>$(DoVersionName)</Version>
65+
<AssemblyVersion>$(DoMajor).$(DoMinor).0.0</AssemblyVersion>
66+
<FileVersion>$(DoMajor).$(DoMinor).$(DoPatch).$(DoBuildNumber)</FileVersion>
67+
<Copyright>$(DoProductCopyright)</Copyright>
68+
<PackageProjectUrl>https://dataobjects.net/</PackageProjectUrl>
69+
<PackageIcon>do-nuget.png</PackageIcon>
70+
<PackageLicense>MIT</PackageLicense>
71+
<PackageTags>DataObjects.Net ORM BLL Persistence</PackageTags>
72+
<PackageOutputPath>$(MSBuildThisFileDirectory)_Build\$(Configuration)\packages</PackageOutputPath>
73+
<RepositoryUrl>https://github.com/DataObjects-NET/dataobjects-net</RepositoryUrl>
74+
<RepositoryType>git</RepositoryType>
75+
</PropertyGroup>
76+
77+
<ItemGroup>
78+
<None Include="$(DoPackageIcon)" Pack="true" PackagePath="." Visible="false" />
79+
</ItemGroup>
80+
81+
<Import Condition="Exists('User.Directory.Build.props')" Project="User.Directory.Build.props" />
82+
</Project>

Extensions/TestCommon/App.config

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
<?xml version="1.0" encoding="utf-8" ?>
2-
<configuration>
3-
<configSections>
4-
<section name="Xtensive.Orm" type="Xtensive.Orm.Configuration.Elements.ConfigurationSection, Xtensive.Orm" />
5-
</configSections>
6-
<Xtensive.Orm configSource="Orm.config"/>
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<configuration>
3+
<configSections>
4+
<section name="Xtensive.Orm" type="Xtensive.Orm.Configuration.Elements.ConfigurationSection, Xtensive.Orm" />
5+
</configSections>
6+
<Xtensive.Orm configSource="Orm.config"/>
77
</configuration>

0 commit comments

Comments
 (0)