This repository has been archived by the owner on May 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21 from osoykan/dev
dev to master
- Loading branch information
Showing
120 changed files
with
1,646 additions
and
943 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<SolutionConfiguration> | ||
<Settings> | ||
<AllowParallelTestExecution>True</AllowParallelTestExecution> | ||
<MetricsExclusionList> | ||
<Value>test\Stove.RabbitMQ.Tests\Stove.RabbitMQ.Tests.csproj</Value> | ||
<Value>test\Stove.Mapster.Tests\Stove.Mapster.Tests.csproj</Value> | ||
<Value>test\Stove.Tests\Stove.Tests.csproj</Value> | ||
<Value>test\Stove.EntityFramework.Tests\Stove.EntityFramework.Tests.csproj</Value> | ||
<Value>test\Stove.Hangfire.Tests\Stove.Hangfire.Tests.csproj</Value> | ||
<Value>test\Stove.TestBase\Stove.TestBase.csproj</Value> | ||
<Value>test\Stove.Tests.SampleApplication\Stove.Tests.SampleApplication.csproj</Value> | ||
<Value>test\Stove.Dapper.Tests\Stove.Dapper.Tests.csproj</Value> | ||
</MetricsExclusionList> | ||
<SolutionConfigured>True</SolutionConfigured> | ||
</Settings> | ||
</SolutionConfiguration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,33 @@ | ||
version: 1.0.{build} | ||
configuration: Release | ||
image: Visual Studio 2017 RC | ||
pull_requests: | ||
do_not_increment_build_number: true | ||
before_build: | ||
- cmd: dotnet.exe restore | ||
|
||
assembly_info: | ||
patch: true | ||
file: '**\AssemblyInfo.*' | ||
assembly_version: '{version}' | ||
assembly_file_version: '{version}' | ||
assembly_informational_version: '{version}' | ||
|
||
environment: | ||
nuget_user: [email protected] | ||
nuget_password: | ||
secure: w73Xs1Is7iK/DtAOf0XTHg== | ||
|
||
before_build: | ||
- cmd: set PATH=C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\MSBuild\15.0\Bin;C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\MSBuild\15.0\Bin;C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\MSBuild\15.0\Bin;%PATH% | ||
- cmd: nuget install nuget.commandline -source https://dotnet.myget.org/F/nuget-build -prerelease -excludeversion | ||
- cmd: set PATH=%appveyor_build_folder%\NuGet.CommandLine\tools;%PATH% | ||
- cmd: nuget restore Stove.sln | ||
|
||
build: | ||
project: Stove.sln | ||
publish_nuget: true | ||
publish_nuget_symbols: true | ||
include_nuget_references: true | ||
verbosity: minimal | ||
after_build: | ||
- cmd: dotnet pack "src\Stove" -c "Release" -o "nupkg/" | ||
- cmd: dotnet pack "src\Stove.EntityFramework" -c "Release" -o "nupkg/" | ||
- cmd: dotnet pack "src\Stove.Hangfire" -c "Release" -o "nupkg/" | ||
- cmd: dotnet pack "src\Stove.NLog" -c "Release" -o "nupkg/" | ||
- cmd: dotnet pack "src\Stove.Mapster" -c "Release" -o "nupkg/" | ||
- cmd: dotnet pack "src\Stove.Redis" -c "Release" -o "nupkg/" | ||
- cmd: dotnet pack "src\Stove.Dapper" -c "Release" -o "nupkg/" | ||
- cmd: dotnet pack "src\Stove.RabbitMQ" -c "Release" -o "nupkg/" | ||
|
||
test: | ||
assemblies: | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<VersionPrefix>0.1.0</VersionPrefix> | ||
<TargetFramework>net452</TargetFramework> | ||
<AssemblyName>Stove.Dapper</AssemblyName> | ||
<PackageId>Stove.Dapper</PackageId> | ||
<PackageTags>.net;framework;boilerplate;entityframework;Dapper</PackageTags> | ||
<PackageIconUrl>https://raw.githubusercontent.com/osoykan/Stove/master/stove.png</PackageIconUrl> | ||
<PackageProjectUrl>https://github.com/osoykan/Stove</PackageProjectUrl> | ||
<PackageLicenseUrl>https://github.com/osoykan/Stove/blob/master/LICENSE</PackageLicenseUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<RepositoryUrl>https://github.com/osoykan/Stove</RepositoryUrl> | ||
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute> | ||
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute> | ||
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute> | ||
<GeneratePackageOnBuild>True</GeneratePackageOnBuild> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Update="bin\Release\net452\Stove.Dapper.pdb"> | ||
<PackagePath>lib/net452/</PackagePath> | ||
<Pack>true</Pack> | ||
</None> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\Stove\Stove.csproj" /> | ||
<ProjectReference Include="..\Stove.EntityFramework\Stove.EntityFramework.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Dapper" Version="1.50.2" /> | ||
<PackageReference Include="DapperExtensions" Version="1.5.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition=" '$(TargetFramework)' == 'net452' "> | ||
<Reference Include="System" /> | ||
<Reference Include="Microsoft.CSharp" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<ProjectConfiguration> | ||
<Settings> | ||
<PreviouslyBuiltSuccessfully>True</PreviouslyBuiltSuccessfully> | ||
</Settings> | ||
</ProjectConfiguration> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<VersionPrefix>0.0.11</VersionPrefix> | ||
<TargetFramework>net452</TargetFramework> | ||
<AssemblyName>Stove.EntityFramework</AssemblyName> | ||
<PackageId>Stove.EntityFramework</PackageId> | ||
<PackageTags>.net;framework;boilerplate;entityframework</PackageTags> | ||
<PackageIconUrl>https://raw.githubusercontent.com/osoykan/Stove/master/stove.png</PackageIconUrl> | ||
<PackageProjectUrl>https://github.com/osoykan/Stove</PackageProjectUrl> | ||
<PackageLicenseUrl>https://github.com/osoykan/Stove/blob/master/LICENSE</PackageLicenseUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<RepositoryUrl>https://github.com/osoykan/Stove</RepositoryUrl> | ||
<GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute> | ||
<GenerateAssemblyDescriptionAttribute>false</GenerateAssemblyDescriptionAttribute> | ||
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute> | ||
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute> | ||
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute> | ||
<GenerateAssemblyCopyrightAttribute>false</GenerateAssemblyCopyrightAttribute> | ||
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute> | ||
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute> | ||
<GeneratePackageOnBuild>True</GeneratePackageOnBuild> | ||
<Version>0.1.0</Version> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Update="bin\Release\net452\Stove.EntityFramework.pdb"> | ||
<PackagePath>lib/net452/</PackagePath> | ||
<Pack>true</Pack> | ||
</None> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\Stove\Stove.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="EntityFramework" Version="6.1.3" /> | ||
<PackageReference Include="EntityFramework.DynamicFilters" Version="2.6.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition=" '$(TargetFramework)' == 'net452' "> | ||
<Reference Include="System" /> | ||
<Reference Include="Microsoft.CSharp" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Reference Include="System.Transactions" /> | ||
</ItemGroup> | ||
|
||
</Project> |
5 changes: 5 additions & 0 deletions
5
src/Stove.EntityFramework/Stove.EntityFramework.v3.ncrunchproject
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<ProjectConfiguration> | ||
<Settings> | ||
<PreviouslyBuiltSuccessfully>True</PreviouslyBuiltSuccessfully> | ||
</Settings> | ||
</ProjectConfiguration> |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.