forked from chuongmep/CadPythonShell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInstaller.csproj
More file actions
21 lines (21 loc) · 776 Bytes
/
Installer.csproj
File metadata and controls
21 lines (21 loc) · 776 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<LangVersion>latest</LangVersion>
<PlatformTarget>x64</PlatformTarget>
<TargetFramework>net48</TargetFramework>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
</PropertyGroup>
<PropertyGroup Condition="$(Configuration.Contains('Release'))">
<Optimize>true</Optimize>
<DebugType>none</DebugType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="WixSharp.bin">
<Version>1.20.0</Version>
</PackageReference>
<PackageReference Include="WixSharp.wix.bin">
<Version>3.11.2</Version>
</PackageReference>
</ItemGroup>
</Project>