mirror of
https://mirror.ghproxy.com/https://github.com/dexyfex/CodeWalker
synced 2024-11-05 22:57:25 +08:00
23 lines
709 B
XML
23 lines
709 B
XML
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net48</TargetFramework>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<UseWPF>true</UseWPF>
|
|
<ApplicationIcon>CWRPFExplorer.ico</ApplicationIcon>
|
|
<Copyright>dexyfex</Copyright>
|
|
<Company>dexyfex software</Company>
|
|
<Authors>dexyfex</Authors>
|
|
<AssemblyName>CodeWalker RPF Explorer</AssemblyName>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\CodeWalker\CodeWalker.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project> |