-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathSloader.Engine.csproj
31 lines (27 loc) · 1.32 KB
/
Sloader.Engine.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Authors>Code Inside Team</Authors>
<Company>Code Inside Team</Company>
<License>https://github.com/Code-Inside/Sloader/blob/master/LICENSE</License>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/Code-Inside/Sloader</PackageProjectUrl>
<RepositoryUrl>https://github.com/Code-Inside/Sloader</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<Version>1.4.1</Version>
<PackageReleaseNotes>See Changelog.md</PackageReleaseNotes>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="HtmlAgilityPack" Version="1.11.2" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="Octokit" Version="0.32.0" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="4.5.0" />
<PackageReference Include="WorldDomination.HttpClient.Helpers" Version="6.1.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Sloader.Config\Sloader.Config.csproj" />
<ProjectReference Include="..\Sloader.Result\Sloader.Result.csproj" />
</ItemGroup>
</Project>