The next generation of the Teknik Services. Written in ASP.NET.
https://www.teknik.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
654 B
20 lines
654 B
<Project Sdk="Microsoft.NET.Sdk"> |
|
|
|
<PropertyGroup> |
|
<TargetFramework>net6.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="6.0.0" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<ProjectReference Include="..\Configuration\Configuration.csproj" /> |
|
<ProjectReference Include="..\Utilities\Utilities.csproj" /> |
|
</ItemGroup> |
|
|
|
</Project>
|
|
|