2016-10-25 12:34:06 +02:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-11-08 15:33:14 +00:00
|
|
|
|
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2018-04-04 15:14:05 +02:00
|
|
|
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
2016-10-25 12:34:06 +02:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
|
|
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
2018-11-08 15:33:14 +00:00
|
|
|
|
<ProjectGuid>{3A33ADC9-C6C0-4DB1-A613-A9AF0210DF3D}</ProjectGuid>
|
2016-10-25 12:34:06 +02:00
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
|
<RootNamespace>Umbraco.Tests.Benchmarks</RootNamespace>
|
|
|
|
|
|
<AssemblyName>Umbraco.Tests.Benchmarks</AssemblyName>
|
2018-05-15 17:17:05 +02:00
|
|
|
|
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
|
2016-10-25 12:34:06 +02:00
|
|
|
|
<FileAlignment>512</FileAlignment>
|
2018-11-08 15:33:14 +00:00
|
|
|
|
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
|
|
|
|
|
<Deterministic>true</Deterministic>
|
2016-10-25 12:34:06 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
|
|
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
|
|
<DebugType>full</DebugType>
|
|
|
|
|
|
<Optimize>false</Optimize>
|
|
|
|
|
|
<OutputPath>bin\Debug\</OutputPath>
|
|
|
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
|
|
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
|
|
|
|
<DebugType>pdbonly</DebugType>
|
|
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
|
|
<OutputPath>bin\Release\</OutputPath>
|
|
|
|
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
2018-11-08 15:33:14 +00:00
|
|
|
|
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
|
|
|
|
|
|
<LangVersion>7.3</LangVersion>
|
2016-10-25 12:34:06 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Reference Include="System" />
|
|
|
|
|
|
<Reference Include="System.Core" />
|
|
|
|
|
|
<Reference Include="System.Xml.Linq" />
|
|
|
|
|
|
<Reference Include="System.Data.DataSetExtensions" />
|
|
|
|
|
|
<Reference Include="Microsoft.CSharp" />
|
|
|
|
|
|
<Reference Include="System.Data" />
|
2018-11-08 15:33:14 +00:00
|
|
|
|
<Reference Include="System.Net.Http" />
|
2016-10-25 12:34:06 +02:00
|
|
|
|
<Reference Include="System.Xml" />
|
2018-03-30 19:31:42 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
2018-11-08 15:33:14 +00:00
|
|
|
|
<Compile Include="BulkInsertBenchmarks.cs" />
|
2018-03-27 16:42:52 +02:00
|
|
|
|
<Compile Include="ConcurrentDictionaryBenchmarks.cs" />
|
|
|
|
|
|
<Compile Include="Config\QuickRunConfigAttribute.cs" />
|
|
|
|
|
|
<Compile Include="Config\QuickRunWithMemoryDiagnoserConfigAttribute.cs" />
|
2018-11-08 15:33:14 +00:00
|
|
|
|
<Compile Include="CtorInvokeBenchmarks.cs" />
|
2017-05-12 14:49:44 +02:00
|
|
|
|
<Compile Include="LinqCastBenchmarks.cs" />
|
2016-10-27 17:36:08 +02:00
|
|
|
|
<Compile Include="ModelToSqlExpressionHelperBenchmarks.cs" />
|
2016-10-25 12:34:06 +02:00
|
|
|
|
<Compile Include="Program.cs" />
|
|
|
|
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
2017-09-24 18:54:31 +02:00
|
|
|
|
<Compile Include="SqlTemplatesBenchmark.cs" />
|
2018-03-27 16:42:52 +02:00
|
|
|
|
<Compile Include="StringReplaceManyBenchmarks.cs" />
|
|
|
|
|
|
<Compile Include="TryConvertToBenchmarks.cs" />
|
2016-10-28 14:33:44 +02:00
|
|
|
|
<Compile Include="XmlBenchmarks.cs" />
|
2017-05-12 14:49:44 +02:00
|
|
|
|
<Compile Include="XmlPublishedContentInitBenchmarks.cs" />
|
2016-10-25 12:34:06 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
2018-11-08 15:33:14 +00:00
|
|
|
|
<None Include="App.config" />
|
2016-10-25 12:34:06 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\Umbraco.Core\Umbraco.Core.csproj">
|
|
|
|
|
|
<Project>{31785bc3-256c-4613-b2f5-a1b0bdded8c1}</Project>
|
|
|
|
|
|
<Name>Umbraco.Core</Name>
|
|
|
|
|
|
</ProjectReference>
|
2018-11-08 15:33:14 +00:00
|
|
|
|
<ProjectReference Include="..\Umbraco.Examine\Umbraco.Examine.csproj">
|
|
|
|
|
|
<Project>{07fbc26b-2927-4a22-8d96-d644c667fecc}</Project>
|
|
|
|
|
|
<Name>Umbraco.Examine</Name>
|
|
|
|
|
|
</ProjectReference>
|
2016-10-25 12:34:06 +02:00
|
|
|
|
<ProjectReference Include="..\Umbraco.Tests\Umbraco.Tests.csproj">
|
|
|
|
|
|
<Project>{5d3b8245-ada6-453f-a008-50ed04bfe770}</Project>
|
|
|
|
|
|
<Name>Umbraco.Tests</Name>
|
|
|
|
|
|
</ProjectReference>
|
2018-11-08 15:33:14 +00:00
|
|
|
|
<ProjectReference Include="..\Umbraco.Web.UI\Umbraco.Web.UI.csproj">
|
|
|
|
|
|
<Project>{4c4c194c-b5e4-4991-8f87-4373e24cc19f}</Project>
|
|
|
|
|
|
<Name>Umbraco.Web.UI</Name>
|
|
|
|
|
|
</ProjectReference>
|
2017-05-12 14:49:44 +02:00
|
|
|
|
<ProjectReference Include="..\Umbraco.Web\Umbraco.Web.csproj">
|
|
|
|
|
|
<Project>{651e1350-91b6-44b7-bd60-7207006d7003}</Project>
|
|
|
|
|
|
<Name>Umbraco.Web</Name>
|
|
|
|
|
|
</ProjectReference>
|
|
|
|
|
|
</ItemGroup>
|
2018-11-08 15:33:14 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<PackageReference Include="BenchmarkDotNet">
|
|
|
|
|
|
<Version>0.11.2</Version>
|
|
|
|
|
|
</PackageReference>
|
|
|
|
|
|
</ItemGroup>
|
2018-05-04 08:32:35 +02:00
|
|
|
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
2018-11-08 15:33:14 +00:00
|
|
|
|
</Project>
|