小编use*_*787的帖子

订阅未注册使用命名空间'Microsoft.DataFactory错误

阅读本教程 "使用Visual Studio创建带有复制活动的管道",并在我点击发布时收到此错误.

Creating datafactory-Name:VSTutorialFactory,Tags:,Subscription:Pay-As-You-Go,ResourceGroup:MyAppGroup,Location:North Europe,

24/03/2016 11:30:34- Error creating data factory:  
Microsoft.WindowsAzure.CloudException: MissingSubscriptionRegistration:  
The subscription is not registered to use namespace 'Microsoft.DataFactory'.
Run Code Online (Sandbox Code Playgroud)

在网上任何地方都没有提到错误,一般在网上对天蓝色的帮助/知识很少.

azure visual-studio azure-data-factory

13
推荐指数
6
解决办法
1万
查看次数

Azure:Web.config连接字符串'参数不能为null或为空

当我尝试发布一个azure应用程序时,我收到此错误.C:\ Program Files(x86)\ MSBuild\Microsoft\VisualStudio\v14.0\Web\Microsoft.Web.Publishing.targets(4283,5):错误:'ibasis_Data_Transfer.mytestdbEntities-Web.config连接字符串'参数不能为空或空.

我的App.Config有一个连接字符串.例如

 <add name="mytestdbEntities" connectionString="metadata=res://*/mytestappModel.csdl|res://*/mytestappModel.ssdl|res://*/mytestappModel.msl;provider=System.Data.SqlClient;provider connection string=&quot;data source=tcp:srv-mytestapp-home.database.windows.net,1433;initial catalog=mytestdb;persist security info=True;user id=blabla;password=blabla;MultipleActiveResultSets=True;App=EntityFramework&quot;" providerName="System.Data.EntityClient" />
Run Code Online (Sandbox Code Playgroud)

不知道在哪里开始寻找解决方案,因为网络上任何与天蓝色相关的错误都没有提到.

ibasis - Web Deploy.pubxml

<?xml version="1.0" encoding="utf-8" ?>
<!--
This file is used by the publish/package process of your Web project. You can customize the behavior of this process
by editing this MSBuild file. In order to learn more about this please visit http://go.microsoft.com/fwlink/?LinkID=208121. 
-->
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <PropertyGroup>
    <WebPublishMethod>MSDeploy</WebPublishMethod>
    <PublishProvider>AzureWebSite</PublishProvider>
    <LastUsedBuildConfiguration>Release</LastUsedBuildConfiguration>
    <LastUsedPlatform>Any CPU</LastUsedPlatform>
    <SiteUrlToLaunchAfterPublish>http://ibasis.azurewebsites.net</SiteUrlToLaunchAfterPublish>
    <LaunchSiteAfterPublish>False</LaunchSiteAfterPublish>
    <MSDeployServiceURL>ibasis.scm.azurewebsites.net:443</MSDeployServiceURL>
    <DeployIisAppPath>ibasis</DeployIisAppPath>
    <SkipExtraFilesOnServer>True</SkipExtraFilesOnServer>
    <MSDeployPublishMethod>WMSVC</MSDeployPublishMethod>
    <UserName>$ibasis</UserName>
    <_SavePWD>True</_SavePWD> …
Run Code Online (Sandbox Code Playgroud)

connection-string azure azure-deployment azure-webjobs visual-studio-2015

10
推荐指数
2
解决办法
6214
查看次数

打字稿文件更改后未更新JavaScript文件

我有一个带有角度的.net核心应用程序,一切正常.当我在.net工作时,我没有接触过js end 4周.这还涉及更新一些npm包等.

现在我发现main.js没有改变,理由是ts-js链接似乎已经消失了.例如,对ts文件的更改(甚至创建一个新文件)不会像它应该生成相应的js文件.

Webpack cmd运行正常.在VS 2017中构建运行正常.

我的tsconfig.json

   {
 "compilerOptions": {
"moduleResolution": "node",
"target": "es5",
"sourceMap": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipDefaultLibCheck": true,
"lib": [ "es6", "dom" ],
"types": [ "node" ]

 },

 "exclude": [ "bin", "node_modules" ],
 "atom": { "rewriteTsconfig": false }
}
Run Code Online (Sandbox Code Playgroud)

我的webpack.config.js

 const path = require('path');
const webpack = require('webpack');
const merge = require('webpack-merge');
const CheckerPlugin = require('awesome-typescript-loader').CheckerPlugin;

module.exports = (env) => {
    // Configuration in common to both client-side and server-side bundles
    const isDevBuild = !(env …
Run Code Online (Sandbox Code Playgroud)

node.js single-page-application typescript asp.net-core angular

3
推荐指数
1
解决办法
2810
查看次数