-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDBF.csproj
More file actions
195 lines (162 loc) · 7.45 KB
/
DBF.csproj
File metadata and controls
195 lines (162 loc) · 7.45 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyVersion>0.9.9.21</AssemblyVersion>
<FileVersion>0.9.9.21</FileVersion>
<Version>0.9.9.21</Version>
<ProductVersion>0.9.9.21</ProductVersion>
<AssemblyTitle>DBF</AssemblyTitle>
<AssemblyName>DBF</AssemblyName>
<Description>DBF Tools - Viser Start og resultatlister og 1-4 bruidgeure</Description>
<RootNamespace>DBF</RootNamespace>
<Company>Morten Sparding</Company>
<Product>DBF Tools</Product>
<Copyright>Copyright © 2025</Copyright>
<OutputType>WinExe</OutputType>
<TargetFramework>net9.0-windows7.0</TargetFramework>
<Nullable>disable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWindowsForms>false</UseWindowsForms>
<UseWPF>true</UseWPF>
<LangVersion>latest</LangVersion>
<Platforms>AnyCPU;x64</Platforms>
<ApplicationIcon>Images\DBF_Tools.ico</ApplicationIcon>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<ComVisible>false</ComVisible>
<Guid>8e71374d-fd18-4298-8e6b-816e21df3aa8</Guid>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<None Remove="Views\AboutView.axaml" />
<None Remove="Views\ConfigurationView.axaml" />
</ItemGroup>
<ItemGroup>
<Compile Remove="AssemblyInfo.cs" />
<Compile Remove="AudioFiles\AudioPlayer.cs" />
<Compile Remove="AudioFiles\AudioServices\LibVlcAudioService.cs" />
<Compile Remove="BridgeMateModel\AccessContext.cs" />
<Compile Remove="BridgeMateModel\EfReloadExtensions.cs" />
<Compile Remove="Helpers\CrashDetector.cs" />
<Compile Remove="Helpers\SerializedFileSystemWatcher2.cs" />
<Compile Remove="ViewModels\ProjectorViewModel.cs" />
</ItemGroup>
<ItemGroup>
<Resource Include="Images\DBF_Tools.ico">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</Resource>
<Resource Include="Images\guideTilUr.jpg">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Resource>
<EmbeddedResource Include="Images\projector_48x48.ico" />
</ItemGroup>
<ItemGroup>
<SplashScreen Include="Images\Splash.png">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</SplashScreen>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Caliburn.Micro" Version="4.0.230" />
<PackageReference Include="Caliburn.Micro.Core" Version="4.0.230" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Fody" Version="6.9.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="PropertyChanged.Fody" Version="4.1.0">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<!--Bemærk, at CDATA ADO.Net her kun virker med entity framework 6 og åbenbart også 8:-) -->
<!--<Reference Include="CData.EntityFrameworkCore.Access">
<HintPath>C:\Program Files\CData\CData ADO.NET Provider for Microsoft Access 2024\lib\net8.0\EFCORE80\CData.EntityFrameworkCore.Access.dll</HintPath>
</Reference>
<Reference Include="System.Data.CData.Access">
<HintPath>C:\Program Files\CData\CData ADO.NET Provider for Microsoft Access 2024\lib\net8.0\System.Data.CData.Access.dll</HintPath>
</Reference>-->
<PackageReference Include="CData.Access" Version="24.0.9175" />
<PackageReference Include="CData.Access.EntityFrameworkCore" Version="24.0.9175" />
<PackageReference Include="Dapper" Version="2.1.72" />
</ItemGroup>
<ItemGroup>
<!--<PackageReference Include="Baksteen.Extensions.DeepCopy" Version="1.0.4" />-->
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="9.0.5" />
<PackageReference Include="Microsoft.Windows.Compatibility" Version="9.0.5" />
<PackageReference Include="NAudio" Version="2.2.1" />
<PackageReference Include="NetCoreAudio" Version="2.0.0" />
<PackageReference Include="System.Data.SqlClient" Version="4.9.0" />
<PackageReference Include="System.Management" Version="9.0.9" /> <!--Must match the version in Github Updater-->
<PackageReference Include="System.Text.Encoding.CodePages" Version="9.0.5" />
<PackageReference Include="WpfScreenHelper" Version="2.1.1" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.5" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.5">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="9.0.5" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="9.0.5">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="syncfusion.ui.wpf.net" Version="31.1.19" />
<PackageReference Include="Syncfusion.SfBusyIndicator.WPF" Version="31.1.19" />
<PackageReference Include="Syncfusion.SfGrid.WPF" Version="31.1.19" />
<PackageReference Include="Syncfusion.Shared.WPF" Version="31.1.19" />
<PackageReference Include="Syncfusion.Shared.Base" Version="31.1.19" />
<PackageReference Include="Syncfusion.Grid.Wpf" Version="31.1.19" />
<PackageReference Include="Syncfusion.SfSkinManager.WPF" Version="31.1.19" />
<PackageReference Include="Syncfusion.Themes.FluentLight.WPF" Version="31.1.19" />
<PackageReference Include="Syncfusion.Themes.MaterialDark.WPF" Version="31.1.19" />
<PackageReference Include="Syncfusion.Themes.Office2019Colorful.WPF" Version="31.1.19" />
<PackageReference Include="Syncfusion.Tools.WPF" Version="31.1.19" />
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\PublishProfiles\" />
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Update="Properties\Settings.Designer.cs">
<DesignTimeSharedInput>True</DesignTimeSharedInput>
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<None Update="Images\projector.ico">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Images\projector_48x48.ico">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<Content Include="..\..\SyncfusionLicense.txt" Link="SyncfusionLicense.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<None Include="..\..\System.Data.CData.Access.lic" Link="System.Data.CData.Access.lic">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="FodyWeavers.xsd" />
<ProjectReference Include="..\..\Common Libs\AppArguments\AppArguments.csproj" />
<ProjectReference Include="..\..\Common Libs\GithubTools\GithubTools.csproj" />
<None Update="InstallerFiles\AccessDatabaseEngine_2010_x86.exe">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</None>
</ItemGroup>
</Project>