2018-06-15 02:57:03 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2021-06-26 07:30:48 +02:00
|
|
|
|
<TargetFramework>net5.0</TargetFramework>
|
2018-06-15 02:57:03 +02:00
|
|
|
|
<AssemblyName>Teknik.Logging</AssemblyName>
|
|
|
|
|
<RootNamespace>Teknik.Logging</RootNamespace>
|
2018-06-18 00:13:15 +02:00
|
|
|
|
<RuntimeIdentifiers>win-x86;win-x64;linux-x64;linux-arm;osx-x64</RuntimeIdentifiers>
|
2018-10-26 07:22:53 +02:00
|
|
|
|
<Configurations>Debug;Release;Test</Configurations>
|
2018-06-15 02:57:03 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2019-08-04 23:13:40 +02:00
|
|
|
|
<ItemGroup>
|
2021-06-26 07:30:48 +02:00
|
|
|
|
<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" />
|
|
|
|
|
<ProjectReference Include="..\Utilities\Utilities.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|