forked from ryanjon2040/Unreal-Binary-Builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUnrealBinaryBuilder.csproj
64 lines (56 loc) · 2.56 KB
/
UnrealBinaryBuilder.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<UseWPF>true</UseWPF>
<UseWindowsForms>true</UseWindowsForms>
<Configurations>Debug;Release;ReleaseToPublic</Configurations>
<PackageId>Unreal Binary Builder</PackageId>
<Authors>Satheesh (ryanjon2040)</Authors>
<Company>Satheesh (ryanjon2040)</Company>
<Description>A helper application designed to create Installed Build of Unreal Engine from Github Source and plugin packager.</Description>
<Copyright>Copyright 2020-2021. Created by Satheesh (ryanjon2040)</Copyright>
<Version>3.1.6</Version>
<PackageProjectUrl>https://www.buymeacoffee.com/ryanjon2040</PackageProjectUrl>
<RepositoryUrl>https://github.com/ryanjon2040/Unreal-Binary-Builder</RepositoryUrl>
<RepositoryType>Github</RepositoryType>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageIcon>compiler.png</PackageIcon>
<ApplicationIcon>compiler.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AvalonEdit" Version="6.1.3.50" />
<PackageReference Include="CefSharp.Wpf.NETCore" Version="98.1.210" />
<PackageReference Include="DotNetZip" Version="1.16.0" />
<PackageReference Include="GameAnalytics.Net.Core.SDK" Version="3.3.5" />
<PackageReference Include="HandyControl" Version="3.2.0" />
<PackageReference Include="LibGit2Sharp" Version="0.27.0-preview-0175" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="Sentry" Version="3.14.1" />
<PackageReference Include="SpicyTaco.AutoGrid" Version="1.2.29" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\UnrealBinaryBuilderUpdater\UnrealBinaryBuilderUpdater.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="..\LICENSE.md">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="compiler.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Update="chromiumembeddedframework.runtime.win-x64" Version="98.1.21" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="chromiumembeddedframework.runtime.win-x86" Version="98.1.21" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="chromiumembeddedframework.runtime.win-arm64" Version="98.1.21" />
</ItemGroup>
</Project>