|
1 | | -<Project Sdk="Microsoft.NET.Sdk"> |
2 | | - |
3 | | - <PropertyGroup> |
4 | | - <OutputType>WinExe</OutputType> |
5 | | - <TargetFramework>net8.0-windows</TargetFramework> |
6 | | - <Nullable>enable</Nullable> |
7 | | - <ImplicitUsings>enable</ImplicitUsings> |
8 | | - <UseWPF>true</UseWPF> |
9 | | - <UseWindowsForms>true</UseWindowsForms> |
10 | | - <Version>3.0.0</Version> |
11 | | - <InternalsVisibleTo>Daqifi.Desktop.Test</InternalsVisibleTo> |
12 | | - <AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
13 | | - </PropertyGroup> |
14 | | - <PropertyGroup> |
15 | | - <ApplicationIcon>Images\WiFiDAQ.ico</ApplicationIcon> |
16 | | - <AssemblyName>DAQiFi</AssemblyName> |
17 | | - <ApplicationManifest>app.manifest</ApplicationManifest> |
18 | | - <EnableWindowsTargeting>true</EnableWindowsTargeting> |
19 | | - </PropertyGroup> |
20 | | - <PropertyGroup> |
21 | | - <AssemblyVersion>3.0.0.0</AssemblyVersion> |
22 | | - <FileVersion>3.0.0.0</FileVersion> |
23 | | - </PropertyGroup> |
24 | | - <PropertyGroup Condition=" '$(Configuration)' == 'Debug' "> |
25 | | - <PlatformTarget>x64</PlatformTarget> |
26 | | - </PropertyGroup> |
27 | | - <PropertyGroup Condition="'$(Configuration)'=='Release'"> |
28 | | - <PlatformTarget>x64</PlatformTarget> |
29 | | - <Prefer32Bit>false</Prefer32Bit> |
30 | | - </PropertyGroup> |
31 | | - <ItemGroup> |
32 | | - <Compile Remove="Loggers\CsvLogger.cs" /> |
33 | | - <Compile Remove="ViewModels\PlottingViewModel.cs" /> |
34 | | - <Compile Remove="ViewModels\PlotViewModel.cs" /> |
35 | | - <Compile Remove="ViewModels\ViewModelLocator.cs" /> |
36 | | - </ItemGroup> |
37 | | - |
38 | | - <ItemGroup> |
39 | | - <None Remove="Images\1Nq.png" /> |
40 | | - <None Remove="Images\2Nq.png" /> |
41 | | - <None Remove="Images\3Nq.png" /> |
42 | | - <None Remove="Images\Add.png" /> |
43 | | - <None Remove="Images\Configuration.png" /> |
44 | | - <None Remove="Images\DAQifi.png" /> |
45 | | - <None Remove="Images\Icon_Large.png" /> |
46 | | - <None Remove="Images\Icon_Medium.png" /> |
47 | | - <None Remove="Images\Icon_Small.png" /> |
48 | | - <None Remove="Images\Nq.png" /> |
49 | | - <None Remove="Images\WiFi.png" /> |
50 | | - <None Remove="Images\WiFiDAQ.ico" /> |
51 | | - </ItemGroup> |
52 | | - <ItemGroup> |
53 | | - <Content Include="e_sqlite3.dll"> |
54 | | - <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
55 | | - </Content> |
56 | | - </ItemGroup> |
57 | | - <ItemGroup> |
58 | | - <PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" /> |
59 | | - <PackageReference Include="Daqifi.Core" Version="0.3.0" /> |
60 | | - <PackageReference Include="EFCore.BulkExtensions" Version="8.1.1" /> |
61 | | - <PackageReference Include="MahApps.Metro" Version="2.4.10" /> |
62 | | - <PackageReference Include="MahApps.Metro.IconPacks" Version="5.1.0" /> |
63 | | - <PackageReference Include="MahApps.Metro.IconPacks.Material" Version="5.1.0" /> |
64 | | - <PackageReference Include="Microsoft.Data.Sqlite" Version="8.0.10" /> |
65 | | - <PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.10" /> |
66 | | - <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.10" /> |
67 | | - <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.10"> |
68 | | - <PrivateAssets>all</PrivateAssets> |
69 | | - <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
70 | | - </PackageReference> |
71 | | - <PackageReference Include="NCalcSync" Version="5.2.11" /> |
72 | | - <PackageReference Include="Newtonsoft.Json" Version="13.0.3" /> |
73 | | - <PackageReference Include="OxyPlot.Core" Version="2.2.0" /> |
74 | | - <PackageReference Include="OxyPlot.Wpf" Version="2.2.0" /> |
75 | | - <PackageReference Include="Roslynator.Analyzers" Version="4.12.4"> |
76 | | - <PrivateAssets>all</PrivateAssets> |
77 | | - <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
78 | | - </PackageReference> |
79 | | - <PackageReference Include="SQLitePCLRaw.bundle_e_sqlite3" Version="2.1.10" /> |
80 | | - <PackageReference Include="SQLitePCLRaw.bundle_green" Version="2.1.10" /> |
81 | | - <PackageReference Include="System.Configuration.ConfigurationManager" Version="8.0.1" /> |
82 | | - <PackageReference Include="System.IO.Ports" Version="8.0.0" /> |
83 | | - <PackageReference Include="System.Management" Version="8.0.0" /> |
84 | | - <PackageReference Include="WindowsFirewallHelper" Version="2.2.0.86" /> |
85 | | - </ItemGroup> |
86 | | - |
87 | | - <ItemGroup> |
88 | | - <ProjectReference Include="..\Daqifi.Desktop.Bootloader\Daqifi.Desktop.Bootloader.csproj" /> |
89 | | - <ProjectReference Include="..\Daqifi.Desktop.Common\Daqifi.Desktop.Common.csproj" /> |
90 | | - <ProjectReference Include="..\Daqifi.Desktop.DataModel\Daqifi.Desktop.DataModel.csproj" /> |
91 | | - <ProjectReference Include="..\Daqifi.Desktop.IO\Daqifi.Desktop.IO.csproj" /> |
92 | | - </ItemGroup> |
93 | | - |
94 | | - <ItemGroup> |
95 | | - <Resource Include="Images\1Nq.png" /> |
96 | | - <Resource Include="Images\2Nq.png" /> |
97 | | - <Resource Include="Images\3Nq.png" /> |
98 | | - <Resource Include="Images\Add.png" /> |
99 | | - <Resource Include="Images\Configuration.png" /> |
100 | | - <Resource Include="Images\DAQifi.png" /> |
101 | | - <Resource Include="Images\Icon_Large.png" /> |
102 | | - <Resource Include="Images\Icon_Medium.png" /> |
103 | | - <Resource Include="Images\Icon_Small.png" /> |
104 | | - <Resource Include="Images\Nq.png" /> |
105 | | - <Resource Include="Images\WiFiDAQ.ico" /> |
106 | | - </ItemGroup> |
107 | | - |
108 | | -</Project> |
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + |
| 3 | + <PropertyGroup> |
| 4 | + <OutputType>WinExe</OutputType> |
| 5 | + <TargetFramework>net8.0-windows</TargetFramework> |
| 6 | + <Nullable>enable</Nullable> |
| 7 | + <ImplicitUsings>enable</ImplicitUsings> |
| 8 | + <UseWPF>true</UseWPF> |
| 9 | + <UseWindowsForms>true</UseWindowsForms> |
| 10 | + <Version>3.0.0</Version> |
| 11 | + <InternalsVisibleTo>Daqifi.Desktop.Test</InternalsVisibleTo> |
| 12 | + <AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
| 13 | + </PropertyGroup> |
| 14 | + <PropertyGroup> |
| 15 | + <ApplicationIcon>Images\WiFiDAQ.ico</ApplicationIcon> |
| 16 | + <AssemblyName>DAQiFi</AssemblyName> |
| 17 | + <ApplicationManifest>app.manifest</ApplicationManifest> |
| 18 | + <EnableWindowsTargeting>true</EnableWindowsTargeting> |
| 19 | + </PropertyGroup> |
| 20 | + <PropertyGroup> |
| 21 | + <AssemblyVersion>3.0.0.0</AssemblyVersion> |
| 22 | + <FileVersion>3.0.0.0</FileVersion> |
| 23 | + </PropertyGroup> |
| 24 | + <PropertyGroup Condition=" '$(Configuration)' == 'Debug' "> |
| 25 | + <PlatformTarget>x64</PlatformTarget> |
| 26 | + </PropertyGroup> |
| 27 | + <PropertyGroup Condition="'$(Configuration)'=='Release'"> |
| 28 | + <PlatformTarget>x64</PlatformTarget> |
| 29 | + <Prefer32Bit>false</Prefer32Bit> |
| 30 | + </PropertyGroup> |
| 31 | + <ItemGroup> |
| 32 | + <Compile Remove="Loggers\CsvLogger.cs" /> |
| 33 | + <Compile Remove="ViewModels\PlottingViewModel.cs" /> |
| 34 | + <Compile Remove="ViewModels\PlotViewModel.cs" /> |
| 35 | + <Compile Remove="ViewModels\ViewModelLocator.cs" /> |
| 36 | + </ItemGroup> |
| 37 | + |
| 38 | + <ItemGroup> |
| 39 | + <None Remove="Images\1Nq.png" /> |
| 40 | + <None Remove="Images\2Nq.png" /> |
| 41 | + <None Remove="Images\3Nq.png" /> |
| 42 | + <None Remove="Images\Add.png" /> |
| 43 | + <None Remove="Images\Configuration.png" /> |
| 44 | + <None Remove="Images\DAQifi.png" /> |
| 45 | + <None Remove="Images\Icon_Large.png" /> |
| 46 | + <None Remove="Images\Icon_Medium.png" /> |
| 47 | + <None Remove="Images\Icon_Small.png" /> |
| 48 | + <None Remove="Images\Nq.png" /> |
| 49 | + <None Remove="Images\WiFi.png" /> |
| 50 | + <None Remove="Images\WiFiDAQ.ico" /> |
| 51 | + </ItemGroup> |
| 52 | + <ItemGroup> |
| 53 | + <Content Include="e_sqlite3.dll"> |
| 54 | + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
| 55 | + </Content> |
| 56 | + </ItemGroup> |
| 57 | + <ItemGroup> |
| 58 | + <PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" /> |
| 59 | + <PackageReference Include="Daqifi.Core" Version="0.4.1" /> |
| 60 | + <PackageReference Include="EFCore.BulkExtensions" Version="8.1.1" /> |
| 61 | + <PackageReference Include="MahApps.Metro" Version="2.4.10" /> |
| 62 | + <PackageReference Include="MahApps.Metro.IconPacks" Version="5.1.0" /> |
| 63 | + <PackageReference Include="MahApps.Metro.IconPacks.Material" Version="5.1.0" /> |
| 64 | + <PackageReference Include="Microsoft.Data.Sqlite" Version="8.0.10" /> |
| 65 | + <PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.10" /> |
| 66 | + <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.10" /> |
| 67 | + <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.10"> |
| 68 | + <PrivateAssets>all</PrivateAssets> |
| 69 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 70 | + </PackageReference> |
| 71 | + <PackageReference Include="NCalcSync" Version="5.2.11" /> |
| 72 | + <PackageReference Include="Newtonsoft.Json" Version="13.0.3" /> |
| 73 | + <PackageReference Include="OxyPlot.Core" Version="2.2.0" /> |
| 74 | + <PackageReference Include="OxyPlot.Wpf" Version="2.2.0" /> |
| 75 | + <PackageReference Include="Roslynator.Analyzers" Version="4.12.4"> |
| 76 | + <PrivateAssets>all</PrivateAssets> |
| 77 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 78 | + </PackageReference> |
| 79 | + <PackageReference Include="SQLitePCLRaw.bundle_e_sqlite3" Version="2.1.10" /> |
| 80 | + <PackageReference Include="SQLitePCLRaw.bundle_green" Version="2.1.10" /> |
| 81 | + <PackageReference Include="System.Configuration.ConfigurationManager" Version="8.0.1" /> |
| 82 | + <PackageReference Include="System.IO.Ports" Version="8.0.0" /> |
| 83 | + <PackageReference Include="System.Management" Version="8.0.0" /> |
| 84 | + <PackageReference Include="WindowsFirewallHelper" Version="2.2.0.86" /> |
| 85 | + </ItemGroup> |
| 86 | + |
| 87 | + <ItemGroup> |
| 88 | + <ProjectReference Include="..\Daqifi.Desktop.Bootloader\Daqifi.Desktop.Bootloader.csproj" /> |
| 89 | + <ProjectReference Include="..\Daqifi.Desktop.Common\Daqifi.Desktop.Common.csproj" /> |
| 90 | + <ProjectReference Include="..\Daqifi.Desktop.DataModel\Daqifi.Desktop.DataModel.csproj" /> |
| 91 | + <ProjectReference Include="..\Daqifi.Desktop.IO\Daqifi.Desktop.IO.csproj" /> |
| 92 | + </ItemGroup> |
| 93 | + |
| 94 | + <ItemGroup> |
| 95 | + <Resource Include="Images\1Nq.png" /> |
| 96 | + <Resource Include="Images\2Nq.png" /> |
| 97 | + <Resource Include="Images\3Nq.png" /> |
| 98 | + <Resource Include="Images\Add.png" /> |
| 99 | + <Resource Include="Images\Configuration.png" /> |
| 100 | + <Resource Include="Images\DAQifi.png" /> |
| 101 | + <Resource Include="Images\Icon_Large.png" /> |
| 102 | + <Resource Include="Images\Icon_Medium.png" /> |
| 103 | + <Resource Include="Images\Icon_Small.png" /> |
| 104 | + <Resource Include="Images\Nq.png" /> |
| 105 | + <Resource Include="Images\WiFiDAQ.ico" /> |
| 106 | + </ItemGroup> |
| 107 | + |
| 108 | +</Project> |
0 commit comments