-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLuaToolsValidator.csproj
More file actions
25 lines (24 loc) · 936 Bytes
/
Copy pathLuaToolsValidator.csproj
File metadata and controls
25 lines (24 loc) · 936 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net10.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<AssemblyName>LuaToolsValidator</AssemblyName>
<RootNamespace>LuaToolsValidator</RootNamespace>
<ApplicationManifest>app.manifest</ApplicationManifest>
<ApplicationIcon>app_icon.ico</ApplicationIcon>
<Version>1.0.0</Version>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>false</SelfContained>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="Assets\Devuvo.ps1" />
<None Update="Assets\Devuvo.ps1">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<Resource Include="app_icon.ico" />
</ItemGroup>
</Project>