mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-18 07:13:46 +01:00
* #23 * #23 "Newtonsoft.Json" Version="10.0.2" * owin * AspNetCore * Fix appveyor build * fix start/stop in untitests
46 lines
2.0 KiB
XML
46 lines
2.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<AssemblyTitle>WireMock.Net.Logic</AssemblyTitle>
|
|
<Authors>Stef Heyenrath</Authors>
|
|
<TargetFrameworks>net45;netstandard1.3</TargetFrameworks>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<AssemblyName>WireMock.Net.Logic</AssemblyName>
|
|
<DebugType>full</DebugType>
|
|
<ApplicationIcon>../WireMock.Net-Logo.ico</ApplicationIcon>
|
|
<Version>1.0.2.0</Version>
|
|
<RootNamespace>WireMock</RootNamespace>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard1.3' ">
|
|
<DefineConstants>NETSTANDARD</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="JetBrains.Annotations" Version="10.4.0">
|
|
<PrivateAssets>All</PrivateAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Newtonsoft.Json" Version="9.0.1" />
|
|
<PackageReference Include="SimMetrics.Net" Version="1.0.3" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
|
|
<PackageReference Include="Microsoft.AspNet.WebApi.OwinSelfHost" Version="5.2.3" />
|
|
<PackageReference Include="Handlebars.Net" Version="1.8.0" />
|
|
<PackageReference Include="XPath2" Version="1.0.3.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.3' ">
|
|
<PackageReference Include="Microsoft.AspNetCore.Owin" Version="1.1.1" />
|
|
<!--<PackageReference Include="Microsoft.AspNetCore.Http.Extensions" Version="1.1.1" />-->
|
|
<PackageReference Include="Handlebars.NetStandard" Version="1.8.1" />
|
|
<PackageReference Include="System.Threading" Version="4.3.0" />
|
|
<PackageReference Include="System.Threading.Tasks" Version="4.3.0" />
|
|
<PackageReference Include="System.Threading.Thread">
|
|
<Version>4.3.0</Version>
|
|
</PackageReference>
|
|
<PackageReference Include="System.Xml.XmlDocument" Version="4.3.0" />
|
|
<PackageReference Include="System.Xml.XPath.XmlDocument" Version="4.3.0" />
|
|
</ItemGroup>
|
|
|
|
</Project> |