2018-06-18 00:13:15 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-06-15 02:57:03 +02:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2021-06-26 07:30:48 +02:00
|
|
|
|
<TargetFramework>net5.0</TargetFramework>
|
2018-06-17 08:02:26 +02:00
|
|
|
|
<AssemblyName>Teknik.Tracking</AssemblyName>
|
|
|
|
|
<RootNamespace>Teknik.Tracking</RootNamespace>
|
2018-06-18 00:13:15 +02:00
|
|
|
|
<RuntimeIdentifiers>win-x86;win-x64;linux-x64;linux-arm;osx-x64</RuntimeIdentifiers>
|
2018-06-15 02:57:03 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2019-02-01 08:43:23 +01:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Remove="lib\Piwik.Tracker.NetStandard1.4.dll" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2019-08-04 23:13:40 +02:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.2.0" />
|
2021-06-26 07:30:48 +02:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="5.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="5.0.0" />
|
2019-08-04 23:13:40 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-06-15 02:57:03 +02:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\Configuration\Configuration.csproj" />
|
2019-02-01 09:31:09 +01:00
|
|
|
|
<ProjectReference Include="..\Logging\Logging.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Utilities\Utilities.csproj" />
|
2018-06-15 02:57:03 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-06-18 06:57:44 +02:00
|
|
|
|
<ItemGroup>
|
2019-02-01 08:43:23 +01:00
|
|
|
|
<Reference Include="Piwik.Tracker">
|
|
|
|
|
<HintPath>lib\Piwik.Tracker.dll</HintPath>
|
2018-06-18 06:57:44 +02:00
|
|
|
|
</Reference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-06-15 02:57:03 +02:00
|
|
|
|
</Project>
|