-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLuaDecompiler.csproj
More file actions
24 lines (24 loc) · 1.02 KB
/
Copy pathLuaDecompiler.csproj
File metadata and controls
24 lines (24 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<ApplicationManifest>app.manifest</ApplicationManifest>
<AssemblyName>LuaDecompiler</AssemblyName>
<RootNamespace>LuaDecompilerDesktop</RootNamespace>
<Version>0.0.1</Version>
<AssemblyVersion>0.0.1.0</AssemblyVersion>
<FileVersion>0.0.1.0</FileVersion>
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<Compile Remove="tests\**\*.cs" />
<None Include="third_party\unluac.jar" CopyToOutputDirectory="PreserveNewest" />
<None Include="third_party\UNLUAC_LICENSE.txt" CopyToOutputDirectory="PreserveNewest" />
<None Include="third_party\lua53.opmap" CopyToOutputDirectory="PreserveNewest" />
<None Include="README.md" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
</Project>