SQL fehler behoben

This commit is contained in:
2023-04-18 22:06:00 +02:00
parent 455d23e3ad
commit 1555e54e82
7 changed files with 29 additions and 7 deletions

View File

@@ -12,7 +12,7 @@ namespace SewerStammGen.WPF.Services
public string OpenFileDialog()
{
OpenFileDialog dialog = new OpenFileDialog();
dialog.Filter = "CSV Files(.csv)|.csv";
dialog.Filter = "CSV Files(.csv)|*.csv";
dialog.FilterIndex = 1;
dialog.Multiselect = false;
if(dialog.ShowDialog() == true)

View File

@@ -8,6 +8,7 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AutoCompleteTextBox" Version="1.6.0" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="7.0.1" />
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="7.0.0" />
<PackageReference Include="Microsoft.Xaml.Behaviors.Wpf" Version="1.1.39" />