gpt4 book ai didi

wpf - 找不到类型或 namespace 名称 'Application'(您是否缺少使用D指令或程序集引用?)

转载 作者:行者123 更新时间:2023-12-02 10:55:55 25 4
gpt4 key购买 nike

我正在尝试从命令行构建WPF应用程序。我正在使用msbuild,但是编译时编译失败。我得到这个错误。
enter image description here
我试图添加引用程序集,但stil不起作用。我需要做什么。我不想使用Visual Studio。
这是我的代码

using System;
using System.Collections.Generic;
using System.Windows;

namespace WpfTutorialSamples
{
public partial class App : Application
{

private void Application_Startup(object sender, StartupEventArgs e)
{
// Create the startup window
MainWindow wnd = new MainWindow();
// Do stuff here, e.g. to the window
wnd.Title = "Something else";
// Show the window
wnd.Show();
}
}
}
这是xaml代码
<Application x:Class="WpfTutorialSamples.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Startup="Application_Startup">
<Application.Resources></Application.Resources>
</Application>
这是msbuild代码
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<Compile Include="App.xaml.cs" />
</ItemGroup>

<Target Name="Build">
<Csc Sources="@(Compile)"/>
</Target>
</Project>
我已经尝试了一些站点和引用资料来学习,也许每个人都喜欢Visual Studio,但是我找不到可以使用命令行进行开发的引用资料。

最佳答案

通常,要从命令行编译项目,我建议使用Visual Studio创建的项目文件。尝试为框架库添加引用,如下所示:

<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<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>
<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>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
有关使用 MSBuild的其他信息,请参见: Using MSBuild

关于wpf - 找不到类型或 namespace 名称 'Application'(您是否缺少使用D指令或程序集引用?),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64145445/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com