-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathBthPS3Installer.csproj
51 lines (43 loc) · 1.94 KB
/
BthPS3Installer.csproj
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net48</TargetFramework>
<RootNamespace>Nefarius.BthPS3.Setup</RootNamespace>
</PropertyGroup>
<PropertyGroup>
<SetupVersion Condition="'$(SetupVersion)' == ''">2.10.0</SetupVersion>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
</PropertyGroup>
<Target Name="GenerateBuildVariableFile" BeforeTargets="BeforeBuild">
<WriteLinesToFile File="GeneratedBuildVariables.g.cs" Lines="namespace Nefarius.BthPS3.Setup { public static class BuildVariables { public const string SetupVersion = "$(SetupVersion)"%3B } }" Overwrite="true" />
</Target>
<ItemGroup>
<None Remove="*.msi" />
<None Remove="*.exe" />
<None Remove="*.wxs" />
<None Remove="*.wixpdb" />
<None Remove="*.wixobj" />
<None Remove="*.g.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CliWrap" Version="3.6.7" />
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="8.0.0" />
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="Nefarius.Utilities.WixSharp" Version="1.0.0" />
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.0.0" />
<PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.4" />
<PackageReference Include="Nefarius.Utilities.Bluetooth" Version="1.8.0" />
<PackageReference Include="Nefarius.Utilities.DeviceManagement" Version="5.0.0" />
<PackageReference Include="WixSharp_wix4" Version="2.4.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\shared\Nefarius.BthPS3.Shared.csproj" />
</ItemGroup>
<ItemGroup>
<Reference Include="System.Windows.Forms" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="cd .\
set ide=true
"$(TargetPath)"" />
</Target>
</Project>