You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
24 lines
1.0 KiB
XML
24 lines
1.0 KiB
XML
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp2.0</TargetFramework>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<OutputType>Exe</OutputType>
|
|
<DefineConstants>NET_CORE</DefineConstants>
|
|
<OutputPath>..\..\..\..\Binaries\DotNET\</OutputPath>
|
|
<RootNamespace>UnrealBuildTool</RootNamespace>
|
|
<AssemblyName>UnrealBuildTool_NETCore</AssemblyName>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\DotNETCommon\DotNETUtilities\DotNetCore\DotNETUtilities.csproj"/>
|
|
<Reference Include="..\..\..\..\Binaries\ThirdParty\Ionic\Ionic.Zip.Reduced.Core.dll"/>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Win32.Registry" Version="4.4.0-preview2-25405-01"/>
|
|
<PackageReference Include="System.ServiceProcess.ServiceController" Version="4.3.0"/>
|
|
<PackageReference Include="Microsoft.CodeAnalysis" Version="2.3.1"/>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Include="../**/*.cs"/>
|
|
</ItemGroup>
|
|
</Project> |