-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathBthPS3CfgUI.csproj
64 lines (64 loc) · 2.61 KB
/
BthPS3CfgUI.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
52
53
54
55
56
57
58
59
60
61
62
63
64
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<ProjectGuid>{C9562844-10FC-484D-82BD-A2D0EDC7E2F1}</ProjectGuid>
<OutputType>WinExe</OutputType>
<TargetFramework>net48</TargetFramework>
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
<AssemblyTitle>BthPS3CfgUI</AssemblyTitle>
<Company>Nefarius Software Solutions e.U.</Company>
<Product>BthPS3CfgUI</Product>
<NeutralLanguage>en</NeutralLanguage>
<Description>BthPS3 Driver Configuration Tool</Description>
<Copyright>Copyright © Nefarius Software Solutions e.U. 2020-2022</Copyright>
<OutputPath>$(SolutionDir)bin\</OutputPath>
<UseWPF>true</UseWPF>
<Version>2.2.0.0</Version>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugType>full</DebugType>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
</PropertyGroup>
<PropertyGroup>
<ApplicationIcon>B3.ico</ApplicationIcon>
</PropertyGroup>
<PropertyGroup>
<ApplicationManifest>app.manifest</ApplicationManifest>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AdonisUI" Version="1.17.1" />
<PackageReference Include="AdonisUI.ClassicTheme" Version="1.17.1" />
<PackageReference Include="Costura.Fody" Version="6.0.0">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Fody" Version="6.9.1">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="PInvoke.Kernel32" Version="0.7.124" />
<PackageReference Include="PInvoke.Windows.Core" Version="0.7.124" />
<PackageReference Include="PropertyChanged.Fody" Version="4.1.0">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="WpfBindingErrors" Version="1.1.0" />
</ItemGroup>
<ItemGroup>
<None Include="app.manifest" />
<None Include="FodyWeavers.xsd">
<SubType>Designer</SubType>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\shared\Nefarius.BthPS3.Shared.csproj" />
</ItemGroup>
<ItemGroup>
<Resource Include="B3.ico" />
</ItemGroup>
<ItemGroup>
<Resource Include="FodyWeavers.xml" />
</ItemGroup>
</Project>