C# software to manage custom archlinux AUR repos
https://repomgr.zotan.services
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.
21 lines
863 B
21 lines
863 B
<Project Sdk="Microsoft.NET.Sdk.Web"> |
|
|
|
<PropertyGroup> |
|
<TargetFramework>netcoreapp2.2</TargetFramework> |
|
<DebugType>full</DebugType> |
|
<Configurations>Debug;Release</Configurations> |
|
<Platforms>AnyCPU</Platforms> |
|
<RuntimeIdentifier>linux-x64</RuntimeIdentifier> |
|
</PropertyGroup> |
|
|
|
|
|
<ItemGroup> |
|
<PackageReference Include="LibGit2Sharp" Version="0.26.0" /> |
|
<PackageReference Include="Microsoft.AspNetCore" Version="2.2.0" /> |
|
<PackageReference Include="Microsoft.AspNetCore.CookiePolicy" Version="2.2.0" /> |
|
<PackageReference Include="Microsoft.AspNetCore.HttpsPolicy" Version="2.2.0" /> |
|
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.2.0" /> |
|
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="2.2.0" /> |
|
</ItemGroup> |
|
|
|
</Project>
|
|
|