ASP.MVC_Angular
Changes
.gitignore 2(+2 -0)
Details
.gitignore 2(+2 -0)
diff --git a/.gitignore b/.gitignore
index 2443eb6..c43eefb 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,3 +6,5 @@ ASP.MVC Angular/.vs/ASP.MVC Angular/v15/Server/*
ASP.MVC Angular/packages/
ASP.MVC Angular/ASP.MVC Angular/node_modules/
+
+ASP.MVC Angular/ASP.MVC Angular/public/
diff --git a/ASP.MVC Angular/.vs/ASP.MVC Angular/v15/.suo b/ASP.MVC Angular/.vs/ASP.MVC Angular/v15/.suo
index 2aa0af5..08c9ce9 100644
Binary files a/ASP.MVC Angular/.vs/ASP.MVC Angular/v15/.suo and b/ASP.MVC Angular/.vs/ASP.MVC Angular/v15/.suo differ
diff --git a/ASP.MVC Angular/ASP.MVC Angular/ASP.MVC Angular.csproj b/ASP.MVC Angular/ASP.MVC Angular/ASP.MVC Angular.csproj
index df620d0..caf89c2 100644
--- a/ASP.MVC Angular/ASP.MVC Angular/ASP.MVC Angular.csproj
+++ b/ASP.MVC Angular/ASP.MVC Angular/ASP.MVC Angular.csproj
@@ -260,7 +260,8 @@
<Error Condition="!Exists('..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0\build\net46\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0\build\net46\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props'))" />
</Target>
<PropertyGroup>
- <PreBuildEvent>npm run build</PreBuildEvent>
+ <PreBuildEvent>npm run build
+</PreBuildEvent>
</PropertyGroup>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
diff --git a/ASP.MVC Angular/ASP.MVC Angular/src/app/app.component.js b/ASP.MVC Angular/ASP.MVC Angular/src/app/app.component.js
new file mode 100644
index 0000000..5b2a154
--- /dev/null
+++ b/ASP.MVC Angular/ASP.MVC Angular/src/app/app.component.js
@@ -0,0 +1,21 @@
+var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
+};
+import { Component } from '@angular/core';
+var AppComponent = /** @class */ (function () {
+ function AppComponent() {
+ this.name = 'Tom';
+ }
+ AppComponent = __decorate([
+ Component({
+ selector: 'my-app',
+ template: "<h1>\u0414\u043E\u0431\u0440\u043E \u043F\u043E\u0436\u0430\u043B\u043E\u0432\u0430\u0442\u044C {{name}}!</h1>\n <label>\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0438\u043C\u044F:</label>\n <input [(ngModel)]=\"name\" placeholder=\"name\">"
+ })
+ ], AppComponent);
+ return AppComponent;
+}());
+export { AppComponent };
+//# sourceMappingURL=app.component.js.map
\ No newline at end of file
diff --git a/ASP.MVC Angular/ASP.MVC Angular/src/app/app.component.js.map b/ASP.MVC Angular/ASP.MVC Angular/src/app/app.component.js.map
new file mode 100644
index 0000000..a9057a8
--- /dev/null
+++ b/ASP.MVC Angular/ASP.MVC Angular/src/app/app.component.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"app.component.js","sourceRoot":"","sources":["app.component.ts"],"names":[],"mappings":";;;;;;AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAQ1C;IANA;QAOI,SAAI,GAAG,KAAK,CAAC;IACjB,CAAC;IAFY,YAAY;QANxB,SAAS,CAAC;YACP,QAAQ,EAAE,QAAQ;YAClB,QAAQ,EAAE,kRAEgD;SAC7D,CAAC;OACW,YAAY,CAExB;IAAD,mBAAC;CAAA,AAFD,IAEC;SAFY,YAAY"}
\ No newline at end of file
diff --git a/ASP.MVC Angular/ASP.MVC Angular/src/app/app.module.js b/ASP.MVC Angular/ASP.MVC Angular/src/app/app.module.js
new file mode 100644
index 0000000..ab6895b
--- /dev/null
+++ b/ASP.MVC Angular/ASP.MVC Angular/src/app/app.module.js
@@ -0,0 +1,24 @@
+var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
+};
+import { NgModule } from '@angular/core';
+import { BrowserModule } from '@angular/platform-browser';
+import { FormsModule } from '@angular/forms';
+import { AppComponent } from './app.component';
+var AppModule = /** @class */ (function () {
+ function AppModule() {
+ }
+ AppModule = __decorate([
+ NgModule({
+ imports: [BrowserModule, FormsModule],
+ declarations: [AppComponent],
+ bootstrap: [AppComponent]
+ })
+ ], AppModule);
+ return AppModule;
+}());
+export { AppModule };
+//# sourceMappingURL=app.module.js.map
\ No newline at end of file
diff --git a/ASP.MVC Angular/ASP.MVC Angular/src/app/app.module.js.map b/ASP.MVC Angular/ASP.MVC Angular/src/app/app.module.js.map
new file mode 100644
index 0000000..46973f7
--- /dev/null
+++ b/ASP.MVC Angular/ASP.MVC Angular/src/app/app.module.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"app.module.js","sourceRoot":"","sources":["app.module.ts"],"names":[],"mappings":";;;;;;AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AACzC,OAAO,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAC;AAC1D,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC7C,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAM/C;IAAA;IAAyB,CAAC;IAAb,SAAS;QALrB,QAAQ,CAAC;YACN,OAAO,EAAE,CAAC,aAAa,EAAE,WAAW,CAAC;YACrC,YAAY,EAAE,CAAC,YAAY,CAAC;YAC5B,SAAS,EAAE,CAAC,YAAY,CAAC;SAC5B,CAAC;OACW,SAAS,CAAI;IAAD,gBAAC;CAAA,AAA1B,IAA0B;SAAb,SAAS"}
\ No newline at end of file
diff --git a/ASP.MVC Angular/ASP.MVC Angular/src/main.js b/ASP.MVC Angular/ASP.MVC Angular/src/main.js
new file mode 100644
index 0000000..146fff1
--- /dev/null
+++ b/ASP.MVC Angular/ASP.MVC Angular/src/main.js
@@ -0,0 +1,5 @@
+import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
+import { AppModule } from './app/app.module';
+var platform = platformBrowserDynamic();
+platform.bootstrapModule(AppModule);
+//# sourceMappingURL=main.js.map
\ No newline at end of file
diff --git a/ASP.MVC Angular/ASP.MVC Angular/src/main.js.map b/ASP.MVC Angular/ASP.MVC Angular/src/main.js.map
new file mode 100644
index 0000000..6e9fc4a
--- /dev/null
+++ b/ASP.MVC Angular/ASP.MVC Angular/src/main.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"main.js","sourceRoot":"","sources":["main.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,sBAAsB,EAAE,MAAM,mCAAmC,CAAC;AAC3E,OAAO,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;AAC7C,IAAM,QAAQ,GAAG,sBAAsB,EAAE,CAAC;AAC1C,QAAQ,CAAC,eAAe,CAAC,SAAS,CAAC,CAAC"}
\ No newline at end of file
diff --git a/ASP.MVC Angular/ASP.MVC Angular/src/polyfills.js b/ASP.MVC Angular/ASP.MVC Angular/src/polyfills.js
new file mode 100644
index 0000000..5d3ced4
--- /dev/null
+++ b/ASP.MVC Angular/ASP.MVC Angular/src/polyfills.js
@@ -0,0 +1,6 @@
+import 'core-js/es6';
+// для поддержки Reflect Api
+import 'core-js/es7/reflect';
+// zone используется angular
+import 'zone.js/dist/zone';
+//# sourceMappingURL=polyfills.js.map
\ No newline at end of file
diff --git a/ASP.MVC Angular/ASP.MVC Angular/src/polyfills.js.map b/ASP.MVC Angular/ASP.MVC Angular/src/polyfills.js.map
new file mode 100644
index 0000000..78c2518
--- /dev/null
+++ b/ASP.MVC Angular/ASP.MVC Angular/src/polyfills.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"polyfills.js","sourceRoot":"","sources":["polyfills.ts"],"names":[],"mappings":"AAAA,OAAO,aAAa,CAAC;AACrB,4BAA4B;AAC5B,OAAO,qBAAqB,CAAC;AAC7B,4BAA4B;AAC5B,OAAO,mBAAmB,CAAC"}
\ No newline at end of file