-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathNMEA2000Analyzer.csproj
More file actions
118 lines (105 loc) · 4.09 KB
/
Copy pathNMEA2000Analyzer.csproj
File metadata and controls
118 lines (105 loc) · 4.09 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
<PackageReadmeFile>README.md</PackageReadmeFile>
<SignAssembly>False</SignAssembly>
<AssemblyVersion>1.4.17</AssemblyVersion>
<FileVersion>1.4.17</FileVersion>
<Version>1.4.17</Version>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>full</DebugType>
<Deterministic>False</Deterministic>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>full</DebugType>
<ShouldCreateLogs>True</ShouldCreateLogs>
<AdvancedSettingsExpanded>True</AdvancedSettingsExpanded>
<UpdateAssemblyVersion>False</UpdateAssemblyVersion>
<UpdateAssemblyFileVersion>False</UpdateAssemblyFileVersion>
<UpdateAssemblyInfoVersion>False</UpdateAssemblyInfoVersion>
<UpdatePackageVersion>False</UpdatePackageVersion>
<AssemblyInfoVersionType>SettingsVersion</AssemblyInfoVersionType>
<InheritWinAppVersionFrom>None</InheritWinAppVersionFrom>
<PrimaryVersionType>AssemblyVersionAttribute</PrimaryVersionType>
<Deterministic>False</Deterministic>
</PropertyGroup>
<ItemGroup>
<Compile Remove="artifacts\**" />
<EmbeddedResource Remove="artifacts\**" />
<None Remove="artifacts\**" />
<Page Remove="artifacts\**" />
<Compile Remove="NewFolder\**" />
<EmbeddedResource Remove="NewFolder\**" />
<None Remove="NewFolder\**" />
<Page Remove="NewFolder\**" />
</ItemGroup>
<ItemGroup>
<None Remove="highlight.json" />
<None Remove="mcp.json" />
<None Remove="custom.json" />
<None Remove="LICENSE" />
<None Remove="local.json" />
<None Remove="presets.json" />
<None Remove="victron.json" />
</ItemGroup>
<ItemGroup>
<Content Include="highlight.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="mcp.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="custom.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="LICENSE">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="local.json" Condition="'$(Configuration)' != 'Debug'">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="presets.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="victron.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="README.md">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="ScaffoldTemplates\**\*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<Folder Include="images\" />
<Folder Include="Tools\" />
</ItemGroup>
<ItemGroup>
<None Include=".github\workflows\release.yml" />
</ItemGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="LiveChartsCore.SkiaSharpView.WPF" Version="2.0.0" />
<PackageReference Include="ModelContextProtocol.AspNetCore" Version="1.2.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Peak.PCANBasic.NET" Version="4.10.0.964" />
<PackageReference Include="System.IO.Ports" Version="10.0.0" />
</ItemGroup>
<ItemGroup>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<Target Name="RemoveDebugLocalJsonCopy" AfterTargets="Build" Condition="'$(Configuration)' == 'Debug'">
<Delete Files="$(OutDir)local.json" Condition="Exists('$(OutDir)local.json')" />
</Target>
</Project>