Skip to content

Commit

Permalink
Merge pull request #28 from simplesoft-pt/feat/release-1.2.1
Browse files Browse the repository at this point in the history
release 1.2.1
  • Loading branch information
gravity00 authored Oct 13, 2022
2 parents f7b4e68 + 9da1f1b commit 5ec11aa
Show file tree
Hide file tree
Showing 5 changed files with 98 additions and 98 deletions.
70 changes: 35 additions & 35 deletions common.props
Original file line number Diff line number Diff line change
@@ -1,43 +1,43 @@
<Project>

<PropertyGroup>
<RootNamespace>SimpleSoft.Database</RootNamespace>
<Product>SimpleSoft.Database</Product>
<Company>SimpleSoft.pt</Company>
<Copyright>Copyright © 2021 SimpleSoft.pt</Copyright>
<Authors>João Simões</Authors>
</PropertyGroup>
<PropertyGroup>
<RootNamespace>SimpleSoft.Database</RootNamespace>
<Product>SimpleSoft.Database</Product>
<Company>SimpleSoft.pt</Company>
<Copyright>Copyright © 2021 SimpleSoft.pt</Copyright>
<Authors>João Simões</Authors>
</PropertyGroup>

<PropertyGroup>
<GenerateAssemblyTitleAttribute>true</GenerateAssemblyTitleAttribute>
<GenerateAssemblyDescriptionAttribute>true</GenerateAssemblyDescriptionAttribute>
<LangVersion>8</LangVersion>
</PropertyGroup>
<PropertyGroup>
<GenerateAssemblyTitleAttribute>true</GenerateAssemblyTitleAttribute>
<GenerateAssemblyDescriptionAttribute>true</GenerateAssemblyDescriptionAttribute>
<LangVersion>8</LangVersion>
</PropertyGroup>

<PropertyGroup>
<AssemblyOriginatorKeyFile>../../SimpleSoft.Database.snk</AssemblyOriginatorKeyFile>
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
<SignAssembly>true</SignAssembly>
<GenerateAssemblyTitleAttribute>true</GenerateAssemblyTitleAttribute>
<GenerateAssemblyDescriptionAttribute>true</GenerateAssemblyDescriptionAttribute>
<IsPackable>true</IsPackable>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>../../SimpleSoft.Database.snk</AssemblyOriginatorKeyFile>
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
<SignAssembly>true</SignAssembly>
<GenerateAssemblyTitleAttribute>true</GenerateAssemblyTitleAttribute>
<GenerateAssemblyDescriptionAttribute>true</GenerateAssemblyDescriptionAttribute>
<IsPackable>true</IsPackable>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>

<PropertyGroup>
<PackageTags>patterns;mediator</PackageTags>
<PackageIconUrl>https://avatars2.githubusercontent.com/u/30837484</PackageIconUrl>
<PackageProjectUrl>https://github.com/simplesoft-pt/Database</PackageProjectUrl>
<PackageLicenseUrl>https://raw.githubusercontent.com/simplesoft-pt/Database/main/LICENSE</PackageLicenseUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/simplesoft-pt/Database.git</RepositoryUrl>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
</PropertyGroup>
<PropertyGroup>
<PackageTags>patterns;mediator</PackageTags>
<PackageIconUrl>https://avatars2.githubusercontent.com/u/30837484</PackageIconUrl>
<PackageProjectUrl>https://github.com/simplesoft-pt/Database</PackageProjectUrl>
<PackageLicenseUrl>https://raw.githubusercontent.com/simplesoft-pt/Database/main/LICENSE</PackageLicenseUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/simplesoft-pt/Database.git</RepositoryUrl>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
</PropertyGroup>

<PropertyGroup>
<AssemblyVersion>1.0.0</AssemblyVersion>
<FileVersion>1.2.0.21347</FileVersion>
<VersionPrefix>1.2.0</VersionPrefix>
</PropertyGroup>
<PropertyGroup>
<AssemblyVersion>1.0.0</AssemblyVersion>
<FileVersion>1.2.1.22286</FileVersion>
<VersionPrefix>1.2.1</VersionPrefix>
</PropertyGroup>

</Project>
34 changes: 17 additions & 17 deletions src/SimpleSoft.Database.EFCore/SimpleSoft.Database.EFCore.csproj
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
<Project Sdk="Microsoft.NET.Sdk">

<Import Project="..\..\common.props" />
<Import Project="..\..\common.props" />

<PropertyGroup>
<Description>Implementation for the Entity Framework Core.</Description>
<TargetFrameworks>netstandard2.1;netstandard2.0;netstandard1.3</TargetFrameworks>
</PropertyGroup>
<PropertyGroup>
<Description>Implementation for the Entity Framework Core.</Description>
<TargetFrameworks>netstandard2.1;netstandard2.0;netstandard1.3</TargetFrameworks>
</PropertyGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'netstandard1.3'">
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="1.1.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard1.3'">
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="1.1.0" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="2.0.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="2.0.0" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.1'">
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="3.0.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.1'">
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="3.0.0" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Simplesoft.Database.Contracts\Simplesoft.Database.Contracts.csproj" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Simplesoft.Database.Contracts\Simplesoft.Database.Contracts.csproj" />
</ItemGroup>

</Project>
22 changes: 11 additions & 11 deletions src/SimpleSoft.Database.NH/SimpleSoft.Database.NH.csproj
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk">

<Import Project="..\..\common.props" />
<Import Project="..\..\common.props" />

<PropertyGroup>
<Description>Implementation for NHibernate.</Description>
<TargetFrameworks>netcoreapp2.0;netstandard2.0;net4.6.1</TargetFrameworks>
</PropertyGroup>
<PropertyGroup>
<Description>Implementation for NHibernate.</Description>
<TargetFrameworks>netcoreapp2.0;netstandard2.0;net4.6.1</TargetFrameworks>
</PropertyGroup>

<ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Options" Version="1.0.0" />
<PackageReference Include="NHibernate" Version="5.1.0" />
</ItemGroup>
<PackageReference Include="NHibernate" Version="5.1.0" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Simplesoft.Database.Contracts\Simplesoft.Database.Contracts.csproj" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Simplesoft.Database.Contracts\Simplesoft.Database.Contracts.csproj" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">

<Import Project="..\..\common.props" />
<Import Project="..\..\common.props" />

<PropertyGroup>
<Description>Interface contracts for database access.</Description>
<TargetFrameworks>netstandard2.1;netstandard2.0;netstandard1.0;net4.5;net4.0</TargetFrameworks>
</PropertyGroup>
<PropertyGroup>
<Description>Interface contracts for database access.</Description>
<TargetFrameworks>netstandard2.1;netstandard2.0;netstandard1.0;net4.5;net4.0</TargetFrameworks>
</PropertyGroup>

</Project>
60 changes: 30 additions & 30 deletions tests/SimpleSoft.Database.Tests/SimpleSoft.Database.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,39 +1,39 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net5.0;netcoreapp3.1;netcoreapp2.1;</TargetFrameworks>
<RootNamespace>SimpleSoft.Database</RootNamespace>
<IsPackable>false</IsPackable>
<LangVersion>8</LangVersion>
</PropertyGroup>
<PropertyGroup>
<TargetFrameworks>net5.0;netcoreapp3.1;netcoreapp2.1;</TargetFrameworks>
<RootNamespace>SimpleSoft.Database</RootNamespace>
<IsPackable>false</IsPackable>
<LangVersion>8</LangVersion>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="[2.4.1]">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="3.1.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="[2.4.1]">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="3.1.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net5.0'">
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="5.0.12" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net5.0'">
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="5.0.12" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.1'">
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="3.1.21" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.1'">
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="3.1.21" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp2.1'">
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="2.2.6" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp2.1'">
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="2.2.6" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\src\SimpleSoft.Database.EFCore\SimpleSoft.Database.EFCore.csproj" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\SimpleSoft.Database.EFCore\SimpleSoft.Database.EFCore.csproj" />
</ItemGroup>

</Project>

0 comments on commit 5ec11aa

Please sign in to comment.