不应为执行加载引用程序集。它们只能在 Reflection-only 加载程序上下文中加载
Reference assemblies should not be loaded for execution. They can only be loaded in the Reflection-only loader context
好的,我有一个与 postgresql 数据库交互的 wpf 应用程序,为此我正在使用 Npgsql,在测试时一切正常,无一例外,但是当我对我的应用程序进行 setup.exe 并且运行 我尝试登录,但它给了我这个例外
这是导致异常的块
private void LoginButton_Click(object sender, RoutedEventArgs e)
{
username = user.Text;
password = pass.Password;
// Specify connection
NpgsqlConnection conn = new NpgsqlConnection( // the exception occurs here
"Server=127.0.0.1;" + // I also tried to set the server url to my pc's ip address on the local network but still the same problem
"User Id=username;" +
"Password=password;" +
"Database=db;" +
"Port=3500");
conn.Open();
// Define a query
NpgsqlCommand cmd = new NpgsqlCommand($"SELECT resid FROM resaccounts WHERE username = '{username}' and password = '{password}';", conn);
// Execute a query
NpgsqlDataReader dr = cmd.ExecuteReader();
if (dr.Read())
{
// Specify connection
NpgsqlConnection conn2 = new NpgsqlConnection(
"Server=127.0.0.1;" +
"User Id=adminBakri;" +
"Password=snoffi9000bakri6;" +
"Database=shobek_lobek_db;" +
"Port=3500");
conn2.Open();
// Define a query
NpgsqlCommand cmd2 = new NpgsqlCommand($"SELECT name FROM restaurants WHERE id = {(int)dr[0]};", conn2);
// Execute a query
NpgsqlDataReader dr2 = cmd2.ExecuteReader();
if (dr2.Read())
{
try
{
Properties.Settings.Default.UserName = Encrypt(username);
Properties.Settings.Default.UserPassword = Encrypt(password);
Properties.Settings.Default.ResId = (int)dr[0];
Properties.Settings.Default.ResName = dr2[0].ToString();
Properties.Settings.Default.Save();
}
catch (Exception exp)
{
Console.WriteLine(exp);
}
this.Hide();
Window mainWindow = new MainWindow();
mainWindow.Show();
this.Close();
}
conn2.Close();
}
else
{
Console.WriteLine("Error, Wrong info");
}
// Close connection
conn.Close();
}
我还有所有 nuget 包的最新版本,包括 System.ValueTuple 和 Npgsql。
我按照tutorial中的步骤为我的应用制作了一个setup.exe,我不知道问题是什么
请帮助我,谢谢。
编辑: 额外信息:我没有使用 MVVM
编辑:添加关于我如何制作的步骤 SETUP.EXE
第 1 步:我在我的解决方案中添加了一个安装项目。
第 2 步:我有以下文件夹。
第 3 步:我在前两个文件夹中添加了以下内容。
到目前为止我有以下内容:
在应用程序文件夹中:
在 Program Files 文件夹中:
第 4 步:我在 Program Files 文件夹中创建了文件的快捷方式,并将其添加到 User's Desktop 和 User's Programs Menu 这两个文件夹中
第 5 步:我将所有文件夹的 AlwaysCreate 属性 值设置为 True。
第 6 步:我现在所做的是重建解决方案并重建安装项目,然后我转到安装项目的调试文件夹并从 setup.msi.
安装应用程序
这是我的 .csproj 文件:
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{F2571E19-BB3A-46FA-B1A1-15ECD9392887}</ProjectGuid>
<OutputType>WinExe</OutputType>
<RootNamespace>Food_Ordering_Res</RootNamespace>
<AssemblyName>Restaurants Helper</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<TargetPlatformVersion>10.0.10240.0</TargetPlatformVersion>
<LangVersion>8.0</LangVersion>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<WarningLevel>4</WarningLevel>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<TargetFrameworkProfile />
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup />
<PropertyGroup />
<PropertyGroup>
<ApplicationIcon>main_logo2_qAL_icon.ico</ApplicationIcon>
</PropertyGroup>
<PropertyGroup>
<StartupObject>Food_Ordering_Res.App</StartupObject>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Numerics" />
<Reference Include="System.Xml" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xaml">
<RequiredTargetFramework>4.0</RequiredTargetFramework>
</Reference>
<Reference Include="WindowsBase" />
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
</ItemGroup>
<ItemGroup>
<ApplicationDefinition Include="App.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</ApplicationDefinition>
<Compile Include="ConfirmLogOut.xaml.cs">
<DependentUpon>ConfirmLogOut.xaml</DependentUpon>
</Compile>
<Compile Include="IncomeInfoWindow.xaml.cs">
<DependentUpon>IncomeInfoWindow.xaml</DependentUpon>
</Compile>
<Compile Include="Login.xaml.cs">
<DependentUpon>Login.xaml</DependentUpon>
</Compile>
<Compile Include="MealEditWindow.xaml.cs">
<DependentUpon>MealEditWindow.xaml</DependentUpon>
</Compile>
<Compile Include="NotificationService.cs" />
<Compile Include="OfflineMealAdditionInfoWindow.xaml.cs">
<DependentUpon>OfflineMealAdditionInfoWindow.xaml</DependentUpon>
</Compile>
<Compile Include="RelayCommand.cs" />
<Compile Include="Splash.xaml.cs">
<DependentUpon>Splash.xaml</DependentUpon>
</Compile>
<Compile Include="UserControlAddCategory.xaml.cs">
<DependentUpon>UserControlAddCategory.xaml</DependentUpon>
</Compile>
<Compile Include="UserControlAddMeal.xaml.cs">
<DependentUpon>UserControlAddMeal.xaml</DependentUpon>
</Compile>
<Compile Include="UserControlCheckBalance.xaml.cs">
<DependentUpon>UserControlCheckBalance.xaml</DependentUpon>
</Compile>
<Compile Include="UserControlEditMeal.xaml.cs">
<DependentUpon>UserControlEditMeal.xaml</DependentUpon>
</Compile>
<Compile Include="UserControlExpenses.xaml.cs">
<DependentUpon>UserControlExpenses.xaml</DependentUpon>
</Compile>
<Compile Include="UserControlHome.xaml.cs">
<DependentUpon>UserControlHome.xaml</DependentUpon>
</Compile>
<Compile Include="UserControlOfflineMealAddition.xaml.cs">
<DependentUpon>UserControlOfflineMealAddition.xaml</DependentUpon>
</Compile>
<Page Include="ConfirmLogOut.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="IncomeInfoWindow.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="Login.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="MainWindow.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
<Compile Include="App.xaml.cs">
<DependentUpon>App.xaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
<Compile Include="MainWindow.xaml.cs">
<DependentUpon>MainWindow.xaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
<Page Include="MealEditWindow.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="OfflineMealAdditionInfoWindow.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="Splash.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="UserControlAddCategory.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="UserControlAddMeal.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="UserControlCheckBalance.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="UserControlEditMeal.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="UserControlExpenses.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="UserControlHome.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="UserControlOfflineMealAddition.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Include="Properties\Settings.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
<Resource Include="main_logo2_qAL_icon.ico" />
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
<Resource Include="Assets\home.png" />
<Resource Include="Assets.png" />
<Resource Include="Assets.png" />
<Resource Include="Assets.png" />
<Resource Include="Assets.png" />
<Content Include="Fonts\ae_Dimnah.ttf">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="LoadingIndicators.WPF">
<Version>0.0.1</Version>
</PackageReference>
<PackageReference Include="MaterialDesignColors">
<Version>1.1.2</Version>
</PackageReference>
<PackageReference Include="MaterialDesignThemes">
<Version>2.3.1.953</Version>
</PackageReference>
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces">
<Version>1.1.0</Version>
</PackageReference>
<PackageReference Include="Microsoft.Windows.SDK.Contracts">
<Version>10.0.18362.2005</Version>
</PackageReference>
<PackageReference Include="Newtonsoft.Json">
<Version>12.0.3</Version>
</PackageReference>
<PackageReference Include="Npgsql">
<Version>4.1.3.1</Version>
</PackageReference>
<PackageReference Include="Portable.BouncyCastle">
<Version>1.8.6.7</Version>
</PackageReference>
<PackageReference Include="RestSharp">
<Version>106.10.1</Version>
</PackageReference>
<PackageReference Include="System.Buffers">
<Version>4.5.1</Version>
</PackageReference>
<PackageReference Include="System.Memory">
<Version>4.5.4</Version>
</PackageReference>
<PackageReference Include="System.Numerics.Vectors">
<Version>4.5.0</Version>
</PackageReference>
<PackageReference Include="System.Runtime.CompilerServices.Unsafe">
<Version>4.7.1</Version>
</PackageReference>
<PackageReference Include="System.Runtime.WindowsRuntime">
<Version>4.7.0</Version>
</PackageReference>
<PackageReference Include="System.Runtime.WindowsRuntime.UI.Xaml">
<Version>4.7.0</Version>
</PackageReference>
<PackageReference Include="System.Text.Encodings.Web">
<Version>4.7.0</Version>
</PackageReference>
<PackageReference Include="System.Text.Json">
<Version>4.7.1</Version>
</PackageReference>
<PackageReference Include="System.Threading.Tasks.Extensions">
<Version>4.5.4</Version>
</PackageReference>
<PackageReference Include="System.ValueTuple">
<Version>4.5.0</Version>
</PackageReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
您的 csproj 文件以 .NET Framework v 4.8 为目标,其中 System.ValueTuple 已经内置。我怀疑内置版本与您作为 Nuget 包添加的版本之间存在冲突。
只需删除 System.ValueTuple
的 PackageReference
(删除 Nuget 包)并重新构建就可以了,您的代码中可能会有一些 'using' 引用也需要删除。
这对于您的问题来说似乎是一个漫长的解决方案,但根据 Dean 的说法,您应该尝试创建一个新项目并将目标框架设置为 .Net Framework 4.6.1,然后从您的旧项目到新项目,然后重试。
希望这能解决您的问题。
好的,我有一个与 postgresql 数据库交互的 wpf 应用程序,为此我正在使用 Npgsql,在测试时一切正常,无一例外,但是当我对我的应用程序进行 setup.exe 并且运行 我尝试登录,但它给了我这个例外
这是导致异常的块
private void LoginButton_Click(object sender, RoutedEventArgs e)
{
username = user.Text;
password = pass.Password;
// Specify connection
NpgsqlConnection conn = new NpgsqlConnection( // the exception occurs here
"Server=127.0.0.1;" + // I also tried to set the server url to my pc's ip address on the local network but still the same problem
"User Id=username;" +
"Password=password;" +
"Database=db;" +
"Port=3500");
conn.Open();
// Define a query
NpgsqlCommand cmd = new NpgsqlCommand($"SELECT resid FROM resaccounts WHERE username = '{username}' and password = '{password}';", conn);
// Execute a query
NpgsqlDataReader dr = cmd.ExecuteReader();
if (dr.Read())
{
// Specify connection
NpgsqlConnection conn2 = new NpgsqlConnection(
"Server=127.0.0.1;" +
"User Id=adminBakri;" +
"Password=snoffi9000bakri6;" +
"Database=shobek_lobek_db;" +
"Port=3500");
conn2.Open();
// Define a query
NpgsqlCommand cmd2 = new NpgsqlCommand($"SELECT name FROM restaurants WHERE id = {(int)dr[0]};", conn2);
// Execute a query
NpgsqlDataReader dr2 = cmd2.ExecuteReader();
if (dr2.Read())
{
try
{
Properties.Settings.Default.UserName = Encrypt(username);
Properties.Settings.Default.UserPassword = Encrypt(password);
Properties.Settings.Default.ResId = (int)dr[0];
Properties.Settings.Default.ResName = dr2[0].ToString();
Properties.Settings.Default.Save();
}
catch (Exception exp)
{
Console.WriteLine(exp);
}
this.Hide();
Window mainWindow = new MainWindow();
mainWindow.Show();
this.Close();
}
conn2.Close();
}
else
{
Console.WriteLine("Error, Wrong info");
}
// Close connection
conn.Close();
}
我还有所有 nuget 包的最新版本,包括 System.ValueTuple 和 Npgsql。
我按照tutorial中的步骤为我的应用制作了一个setup.exe,我不知道问题是什么
请帮助我,谢谢。
编辑: 额外信息:我没有使用 MVVM
编辑:添加关于我如何制作的步骤 SETUP.EXE
第 1 步:我在我的解决方案中添加了一个安装项目。
第 2 步:我有以下文件夹。
第 3 步:我在前两个文件夹中添加了以下内容。
到目前为止我有以下内容:
在应用程序文件夹中:
在 Program Files 文件夹中:
第 4 步:我在 Program Files 文件夹中创建了文件的快捷方式,并将其添加到 User's Desktop 和 User's Programs Menu 这两个文件夹中
第 5 步:我将所有文件夹的 AlwaysCreate 属性 值设置为 True。
第 6 步:我现在所做的是重建解决方案并重建安装项目,然后我转到安装项目的调试文件夹并从 setup.msi.
安装应用程序这是我的 .csproj 文件:
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{F2571E19-BB3A-46FA-B1A1-15ECD9392887}</ProjectGuid>
<OutputType>WinExe</OutputType>
<RootNamespace>Food_Ordering_Res</RootNamespace>
<AssemblyName>Restaurants Helper</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<TargetPlatformVersion>10.0.10240.0</TargetPlatformVersion>
<LangVersion>8.0</LangVersion>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<WarningLevel>4</WarningLevel>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<TargetFrameworkProfile />
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup />
<PropertyGroup />
<PropertyGroup>
<ApplicationIcon>main_logo2_qAL_icon.ico</ApplicationIcon>
</PropertyGroup>
<PropertyGroup>
<StartupObject>Food_Ordering_Res.App</StartupObject>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Numerics" />
<Reference Include="System.Xml" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xaml">
<RequiredTargetFramework>4.0</RequiredTargetFramework>
</Reference>
<Reference Include="WindowsBase" />
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
</ItemGroup>
<ItemGroup>
<ApplicationDefinition Include="App.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</ApplicationDefinition>
<Compile Include="ConfirmLogOut.xaml.cs">
<DependentUpon>ConfirmLogOut.xaml</DependentUpon>
</Compile>
<Compile Include="IncomeInfoWindow.xaml.cs">
<DependentUpon>IncomeInfoWindow.xaml</DependentUpon>
</Compile>
<Compile Include="Login.xaml.cs">
<DependentUpon>Login.xaml</DependentUpon>
</Compile>
<Compile Include="MealEditWindow.xaml.cs">
<DependentUpon>MealEditWindow.xaml</DependentUpon>
</Compile>
<Compile Include="NotificationService.cs" />
<Compile Include="OfflineMealAdditionInfoWindow.xaml.cs">
<DependentUpon>OfflineMealAdditionInfoWindow.xaml</DependentUpon>
</Compile>
<Compile Include="RelayCommand.cs" />
<Compile Include="Splash.xaml.cs">
<DependentUpon>Splash.xaml</DependentUpon>
</Compile>
<Compile Include="UserControlAddCategory.xaml.cs">
<DependentUpon>UserControlAddCategory.xaml</DependentUpon>
</Compile>
<Compile Include="UserControlAddMeal.xaml.cs">
<DependentUpon>UserControlAddMeal.xaml</DependentUpon>
</Compile>
<Compile Include="UserControlCheckBalance.xaml.cs">
<DependentUpon>UserControlCheckBalance.xaml</DependentUpon>
</Compile>
<Compile Include="UserControlEditMeal.xaml.cs">
<DependentUpon>UserControlEditMeal.xaml</DependentUpon>
</Compile>
<Compile Include="UserControlExpenses.xaml.cs">
<DependentUpon>UserControlExpenses.xaml</DependentUpon>
</Compile>
<Compile Include="UserControlHome.xaml.cs">
<DependentUpon>UserControlHome.xaml</DependentUpon>
</Compile>
<Compile Include="UserControlOfflineMealAddition.xaml.cs">
<DependentUpon>UserControlOfflineMealAddition.xaml</DependentUpon>
</Compile>
<Page Include="ConfirmLogOut.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="IncomeInfoWindow.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="Login.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="MainWindow.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
<Compile Include="App.xaml.cs">
<DependentUpon>App.xaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
<Compile Include="MainWindow.xaml.cs">
<DependentUpon>MainWindow.xaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
<Page Include="MealEditWindow.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="OfflineMealAdditionInfoWindow.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="Splash.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="UserControlAddCategory.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="UserControlAddMeal.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="UserControlCheckBalance.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="UserControlEditMeal.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="UserControlExpenses.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="UserControlHome.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="UserControlOfflineMealAddition.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Include="Properties\Settings.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
<Resource Include="main_logo2_qAL_icon.ico" />
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
<Resource Include="Assets\home.png" />
<Resource Include="Assets.png" />
<Resource Include="Assets.png" />
<Resource Include="Assets.png" />
<Resource Include="Assets.png" />
<Content Include="Fonts\ae_Dimnah.ttf">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="LoadingIndicators.WPF">
<Version>0.0.1</Version>
</PackageReference>
<PackageReference Include="MaterialDesignColors">
<Version>1.1.2</Version>
</PackageReference>
<PackageReference Include="MaterialDesignThemes">
<Version>2.3.1.953</Version>
</PackageReference>
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces">
<Version>1.1.0</Version>
</PackageReference>
<PackageReference Include="Microsoft.Windows.SDK.Contracts">
<Version>10.0.18362.2005</Version>
</PackageReference>
<PackageReference Include="Newtonsoft.Json">
<Version>12.0.3</Version>
</PackageReference>
<PackageReference Include="Npgsql">
<Version>4.1.3.1</Version>
</PackageReference>
<PackageReference Include="Portable.BouncyCastle">
<Version>1.8.6.7</Version>
</PackageReference>
<PackageReference Include="RestSharp">
<Version>106.10.1</Version>
</PackageReference>
<PackageReference Include="System.Buffers">
<Version>4.5.1</Version>
</PackageReference>
<PackageReference Include="System.Memory">
<Version>4.5.4</Version>
</PackageReference>
<PackageReference Include="System.Numerics.Vectors">
<Version>4.5.0</Version>
</PackageReference>
<PackageReference Include="System.Runtime.CompilerServices.Unsafe">
<Version>4.7.1</Version>
</PackageReference>
<PackageReference Include="System.Runtime.WindowsRuntime">
<Version>4.7.0</Version>
</PackageReference>
<PackageReference Include="System.Runtime.WindowsRuntime.UI.Xaml">
<Version>4.7.0</Version>
</PackageReference>
<PackageReference Include="System.Text.Encodings.Web">
<Version>4.7.0</Version>
</PackageReference>
<PackageReference Include="System.Text.Json">
<Version>4.7.1</Version>
</PackageReference>
<PackageReference Include="System.Threading.Tasks.Extensions">
<Version>4.5.4</Version>
</PackageReference>
<PackageReference Include="System.ValueTuple">
<Version>4.5.0</Version>
</PackageReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
您的 csproj 文件以 .NET Framework v 4.8 为目标,其中 System.ValueTuple 已经内置。我怀疑内置版本与您作为 Nuget 包添加的版本之间存在冲突。
只需删除 System.ValueTuple
的 PackageReference
(删除 Nuget 包)并重新构建就可以了,您的代码中可能会有一些 'using' 引用也需要删除。
这对于您的问题来说似乎是一个漫长的解决方案,但根据 Dean 的说法,您应该尝试创建一个新项目并将目标框架设置为 .Net Framework 4.6.1,然后从您的旧项目到新项目,然后重试。
希望这能解决您的问题。