mirror of
https://git.teknik.io/Teknikode/Teknik.git
synced 2023-08-02 14:16:22 +02:00
21 lines
654 B
XML
21 lines
654 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
<AssemblyName>Teknik.Logging</AssemblyName>
|
|
<RootNamespace>Teknik.Logging</RootNamespace>
|
|
<RuntimeIdentifiers>win-x86;win-x64;linux-x64;linux-arm;osx-x64</RuntimeIdentifiers>
|
|
<Configurations>Debug;Release;Test</Configurations>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="5.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Configuration\Configuration.csproj" />
|
|
<ProjectReference Include="..\Utilities\Utilities.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|