执行清理后,命名空间中不存在类型或命名空间名称

时间:2018-01-15 17:52:05

标签: c# visual-studio

这个问题让我正式疯狂,直到现在一切正常,现在程序显示出很多可怕的错误。

在实践中,我在项目上单击鼠标右键并选择“清理”,当我点击“编译”时,我收到了很多错误:

命名空间

中不存在类型或命名空间

我在互联网上查找错误,我发现了这些错误:

Type or namespace name does not exist

但它对我没有帮助,我也在使用5个项目,每个人都将版本设置为4.6.1

1 个答案:

答案 0 :(得分:1)

如果您未正确设置Clean,则会在Solution Build Sequence之后发生这种情况。

如果缺少参考文献在同一解决方案中

两种可能的固定

  

尝试Building在其他项目中引用的项目//our root app component import {Component, NgModule, VERSION, Input, OnInit} from '@angular/core' import {BrowserModule} from '@angular/platform-browser' import { FormBuilder, FormGroup, FormControl } from '@angular/forms'; import { FormsModule,ReactiveFormsModule } from '@angular/forms'; @Component({ selector: 'my-nested-component', template: ` <div [formGroup]="parentForm"> <input formControlName="mynestedcontrol" type="text"> </div> `, }) export class MyNestedComponent implements OnInit { @Input() parentForm:FormGroup constructor(private fb: FormBuilder) { } ngOnInit() { this.parentForm.addControl("mynestedcontrol", new FormControl('',[])) } } @Component({ selector: 'my-form', template: `<div [formGroup]="parentForm"> <input formControlName="mycontrol" type="text"> <a href="#" (click)="onClickShowDetails()" *ngIf="!showDetails">Show Details</a> <div *ngIf="showDetails"> <my-nested-component [parentForm]="parentForm"></my-nested-component> </div> </div> `, }) export class MyForm implements OnInit { @Input() parentForm:FormGroup constructor(private fb: FormBuilder) { } ngOnInit() { this.parentForm.addControl("mycontrol", new FormControl('',[])) } showDetails = false; onClickShowDetails() { this.showDetails = true } } @Component({ selector: 'my-app', template: `<form [formGroup]="myForm" novalidate> <my-form [parentForm]="myForm"></my-form> </form> {{myForm.value|json}} `, }) export class App { myForm:FormGroup constructor(private fb: FormBuilder) { this.myForm = this.fb.group({}) } } @NgModule({ imports: [ BrowserModule, ReactiveFormsModule, FormsModule], declarations: [ App,MyForm,MyNestedComponent ], bootstrap: [ App ] }) export class AppModule {}   个别项目。

  

在您的解决方案中制作正确的项目构建序列..