mirror of
https://git.teknik.io/Teknikode/Teknik.git
synced 2023-08-02 14:16:22 +02:00
16 lines
495 B
XML
16 lines
495 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<AssemblyName>Teknik.GitService</AssemblyName>
|
|
<RootNamespace>Teknik.GitService</RootNamespace>
|
|
<RuntimeIdentifiers>win-x86;win-x64;linux-x64;linux-arm;osx-x64</RuntimeIdentifiers>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="MySql.Data" Version="8.0.13" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|