|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0"> |
2 | 2 | <PropertyGroup> |
3 | | - <TargetFramework>net461</TargetFramework> |
4 | | - <Authors>Ben Griswold, Jeff Treuting</Authors> |
5 | | - <Description>SharpRepository is a generic repository</Description> |
| 3 | + <TargetFrameworks>netcoreapp2.0;net461</TargetFrameworks> |
| 4 | + <Authors>Ben Griswold, Jeff Treuting</Authors> |
| 5 | + <Description>SharpRepository performance test</Description> |
6 | 6 | <Summary>Written in C#, includes support for various relational, document and object databases including Entity Framework, RavenDB, MongoDB, CouchDB and Db4o. SharpRepository includes Xml and InMemory repository implementations as well. SharpRepository offers built-in caching options for AppFabric, memcached and the standard System.Runtime.Caching. SharpRepository also supports Specifications, FetchStrategies, Batches and Traits!</Summary> |
7 | | - <PackageId>SharpRepository.Caching.AppFabric</PackageId> |
8 | | - <PackageVersion>2.0.0-alpha2</PackageVersion> |
9 | | - <PackageReleaseNotes>2.0.0-alpha2: merge all code</PackageReleaseNotes> |
10 | | - <PackageTags>SharpRepository Repository Cache AppFabric</PackageTags> |
11 | | - <PackageIconUrl>https://user-images.githubusercontent.com/6349515/28491142-7b6350c4-6eeb-11e7-9c5b-e3b8ef1e73b8.png</PackageIconUrl> |
12 | | - <PackageProjectUrl>https://github.com/SharpRepository/SharpRepository</PackageProjectUrl> |
13 | | - <PackageLicenseUrl>https://raw.githubusercontent.com/SharpRepository/SharpRepository/master/license.txt</PackageLicenseUrl> |
14 | | - <PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance> |
15 | | - <RepositoryUrl>https://github.com/SharpRepository/SharpRepository.git</RepositoryUrl> |
16 | | - <RepositoryType>git</RepositoryType> |
| 7 | + <RepositoryType>git</RepositoryType> |
| 8 | + <ApplicationIcon /> |
| 9 | + <OutputType>Exe</OutputType> |
| 10 | + <StartupObject>SharpRepository.Benchmarks.Configuration.Program</StartupObject> |
| 11 | + <RuntimeIdentifiers>win10-x64</RuntimeIdentifiers> |
17 | 12 | </PropertyGroup> |
| 13 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> |
| 14 | + <PlatformTarget>AnyCPU</PlatformTarget> |
| 15 | + </PropertyGroup> |
| 16 | + <ItemGroup> |
| 17 | + <None Remove="repository.json" /> |
| 18 | + </ItemGroup> |
| 19 | + <ItemGroup> |
| 20 | + <Content Include="repository.json"> |
| 21 | + <CopyToOutputDirectory>Always</CopyToOutputDirectory> |
| 22 | + <Pack>true</Pack> |
| 23 | + </Content> |
| 24 | + </ItemGroup> |
18 | 25 | <ItemGroup> |
19 | 26 | <ProjectReference Include="..\SharpRepository.Repository\SharpRepository.Repository.csproj" /> |
20 | | - <ProjectReference Include="..\SharpRepository.Caching.Memcached\SharpRepository.Caching.Memcached.csproj" /> |
21 | 27 | <ProjectReference Include="..\SharpRepository.InMemoryRepository\SharpRepository.InMemoryRepository.csproj" /> |
22 | 28 | <ProjectReference Include="..\SharpRepository.Ioc.StructureMap\SharpRepository.Ioc.StructureMap.csproj" /> |
23 | 29 | </ItemGroup> |
|
0 commit comments