Skip to content

Commit

Permalink
Relase 3.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
RamanGreenFlux committed Dec 20, 2019
1 parent 2b5b460 commit 22984bf
Show file tree
Hide file tree
Showing 4 changed files with 60 additions and 48 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,19 @@
<TargetFramework>netstandard2.1</TargetFramework>
<PackageId>MockQueryable.FakeItEasy</PackageId>
<Authors>Roman Titov</Authors>
<Description>Async operations with generic collections, to provide for collections such List&lt;T&gt; execute EntityFrameworkCore operations such ToListAsync, FirstOrDefaultAsync etc.</Description>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageReleaseNotes>EntityFrameworkCore 3.0.0 supported</PackageReleaseNotes>
<PackageTags>Moq EntityFrameworkCore Queryable mock EF UnitTests FakeItEasy</PackageTags>
<PackageProjectUrl>https://github.com/romantitov/MockQueryable</PackageProjectUrl>
<RepositoryUrl>https://github.com/romantitov/MockQueryable</RepositoryUrl>
<Description>
Extension for mocking Entity Framework Core operations such ToListAsync, FirstOrDefaultAsync etc. by Moq
When writing tests for your application it is often desirable to avoid hitting the database. The extension allows you to achieve this by creating a context – with behavior defined by your tests – that makes use of in-memory data.
</Description>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageReleaseNotes>Allows mutation of base enumerable</PackageReleaseNotes>
<PackageProjectUrl>https://github.com/romantitov/MockQueryable</PackageProjectUrl>
<RepositoryUrl>https://github.com/romantitov/MockQueryable</RepositoryUrl>
<PackageTags>Mock EntityFrameworkCore Queryable mock EF UnitTests FakeItEasy</PackageTags>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>3.0.1</Version>
<AssemblyVersion>3.0.0.1</AssemblyVersion>
<FileVersion>3.0.0.1</FileVersion>
<Version>3.0.2</Version>
<AssemblyVersion>3.0.2.0</AssemblyVersion>
<FileVersion>3.0.2.0</FileVersion>
<Company></Company>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageIcon>logo.png</PackageIcon>
Expand Down
24 changes: 13 additions & 11 deletions src/MockQueryable/MockQueryable.Moq/MockQueryable.Moq.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,22 @@

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<PackageId>MockQueryable.Moq</PackageId>
<Authors>Roman Titov</Authors>
<Company></Company>

<Description>Extension for mocking Entity Framework Core operations such ToListAsync, FirstOrDefaultAsync etc. by Moq
When writing tests for your application it is often desirable to avoid hitting the database. The extension allows you to achieve this by creating a context – with behavior defined by your tests – that makes use of in-memory data.</Description>
<PackageProjectUrl>https://github.com/romantitov/MockQueryable</PackageProjectUrl>
<Description>
Extension for mocking Entity Framework Core operations such ToListAsync, FirstOrDefaultAsync etc. by Moq
When writing tests for your application it is often desirable to avoid hitting the database. The extension allows you to achieve this by creating a context – with behavior defined by your tests – that makes use of in-memory data.
</Description>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageReleaseNotes>Allows mutation of base enumerable</PackageReleaseNotes>
<PackageProjectUrl>https://github.com/romantitov/MockQueryable</PackageProjectUrl>
<RepositoryUrl>https://github.com/romantitov/MockQueryable</RepositoryUrl>
<PackageTags>Moq EntityFrameworkCore Queryable mock EF UnitTests EntityFrameworkCore</PackageTags>
<PackageTags>Mock EntityFrameworkCore Queryable mock EF UnitTests EntityFrameworkCore Moq</PackageTags>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>MockQueryable.Moq</PackageId>
<Version>3.0.1</Version>
<AssemblyVersion>3.0.0.1</AssemblyVersion>
<FileVersion>3.0.0.1</FileVersion>
<PackageReleaseNotes>EntityFrameworkCore 3.0.0 supported</PackageReleaseNotes>
<Version>3.0.2</Version>
<AssemblyVersion>3.0.2.0</AssemblyVersion>
<FileVersion>3.0.2.0</FileVersion>
<Company></Company>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageIcon>logo.png</PackageIcon>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,24 @@

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<Authors>Roman Titov</Authors>
<Company></Company>
<Description>Extension for mocking Entity Framework Core operations such ToListAsync, FirstOrDefaultAsync etc. by NSubstitute
When writing tests for your application it is often desirable to avoid hitting the database. The extension allows you to achieve this by creating a context – with behavior defined by your tests – that makes use of in-memory data.</Description>
<PackageProjectUrl>https://github.com/romantitov/MockQueryable</PackageProjectUrl>
<RepositoryUrl>https://github.com/romantitov/MockQueryable</RepositoryUrl>
<PackageTags>NSubstitute EntityFrameworkCore Queryable mock EF UnitTests</PackageTags>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>3.0.1</Version>
<AssemblyVersion>3.0.0.1</AssemblyVersion>
<FileVersion>3.0.0.1</FileVersion>
<PackageReleaseNotes>EntityFrameworkCore 3.0.0 supported, NSubstitute 4.2.1 required</PackageReleaseNotes>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageIcon>logo.png</PackageIcon>
<PackageId>MockQueryable.NSubstitute</PackageId>
<Authors>Roman Titov</Authors>
<Description>
Extension for mocking Entity Framework Core operations such ToListAsync, FirstOrDefaultAsync etc. by Moq
When writing tests for your application it is often desirable to avoid hitting the database. The extension allows you to achieve this by creating a context – with behavior defined by your tests – that makes use of in-memory data.
</Description>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageReleaseNotes>Allows mutation of base enumerable</PackageReleaseNotes>
<PackageProjectUrl>https://github.com/romantitov/MockQueryable</PackageProjectUrl>
<RepositoryUrl>https://github.com/romantitov/MockQueryable</RepositoryUrl>
<PackageTags>Mock EntityFrameworkCore Queryable mock EF UnitTests EntityFrameworkCore NSubstitute</PackageTags>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>3.0.2</Version>
<AssemblyVersion>3.0.2.0</AssemblyVersion>
<FileVersion>3.0.2.0</FileVersion>
<Company></Company>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageIcon>logo.png</PackageIcon>
</PropertyGroup>

<ItemGroup>
Expand Down
31 changes: 17 additions & 14 deletions src/MockQueryable/MockQueryable/MockQueryable.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,23 @@
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<PackageId>MockQueryable.Core</PackageId>
<Authors>Roman Titov</Authors>
<Description>Async operations with generic collections, to provide for collections such List&lt;T&gt; execute EntityFrameworkCore operations such ToListAsync, FirstOrDefaultAsync etc.</Description>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageReleaseNotes>EntityFrameworkCore 3.0.0 supported</PackageReleaseNotes>
<PackageTags>Moq EntityFrameworkCore Queryable mock EF UnitTests EntityFrameworkCore</PackageTags>
<PackageProjectUrl>https://github.com/romantitov/MockQueryable</PackageProjectUrl>
<RepositoryUrl>https://github.com/romantitov/MockQueryable</RepositoryUrl>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>3.0.1</Version>
<AssemblyVersion>3.0.1.0</AssemblyVersion>
<FileVersion>3.0.1.0</FileVersion>
<Company></Company>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageIcon>logo.png</PackageIcon>
<Authors>Roman Titov</Authors>
<Description>
Extension for mocking Entity Framework Core operations such ToListAsync, FirstOrDefaultAsync etc. by Moq
When writing tests for your application it is often desirable to avoid hitting the database. The extension allows you to achieve this by creating a context – with behavior defined by your tests – that makes use of in-memory data.
</Description>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageReleaseNotes>Allows mutation of base enumerable</PackageReleaseNotes>
<PackageProjectUrl>https://github.com/romantitov/MockQueryable</PackageProjectUrl>
<RepositoryUrl>https://github.com/romantitov/MockQueryable</RepositoryUrl>
<PackageTags>Mock EntityFrameworkCore Queryable mock EF UnitTests EntityFrameworkCore</PackageTags>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>3.0.2</Version>
<AssemblyVersion>3.0.2.0</AssemblyVersion>
<FileVersion>3.0.2.0</FileVersion>
<Company></Company>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageIcon>logo.png</PackageIcon>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand Down

0 comments on commit 22984bf

Please sign in to comment.