簡體   English   中英

試圖讓我的.net核心應用程序在Visual Studio代碼中運行

[英]Trying to get my .net core application to run in visual studio code

我的Windows硬盤驅動器最近有點塵土飛揚,最近我在使用.net core 1.1的vs 2015中開發了一個有角度的2 .net core應用程序。 我有一台裝有ubuntu的計算機,所以我雖然不為什么不下載VS代碼並克隆我的項目並開始正確工作.....好吧,我遇到了問題,希望有人可以提供幫助。

我安裝c#我安裝C#擴展。 但這是我得到的錯誤

建立失敗。 /home/deshazer/Documents/code/HannaOilGas2/HannaOilAndGas2/project.json(1,1):錯誤MSB4025:無法加載項目文件。 根級別的數據無效。 第1行,位置1。0警告1錯誤經過的時間00:00:00.06

現在我的project.json文件看起來像這樣

{
  "dependencies": {
    "Microsoft.NETCore.App": {
      "version": "1.1.0",
      "type": "platform"
    },
    "Microsoft.AspNetCore": "1.1.0",
    "Microsoft.AspNetCore.Mvc.Core": "1.1.1",
    "Microsoft.AspNetCore.AngularServices": "1.0.0-*",
    "Microsoft.AspNetCore.Razor.Tools": {
      "version": "1.0.0-preview2-final",
      "type": "build"
    },
    "Microsoft.AspNetCore.Diagnostics": "1.1.0",
    "Microsoft.AspNetCore.Mvc": "1.1.1",
    "Microsoft.AspNetCore.Server.IISIntegration": "1.1.0",
    "Microsoft.AspNetCore.Server.Kestrel": "1.1.0",
    "Microsoft.AspNetCore.StaticFiles": "1.1.0",
    "Microsoft.Extensions.Configuration.CommandLine": "1.1.0",
    "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0",
    "Microsoft.Extensions.Configuration.Json": "1.1.0",
    "Microsoft.Extensions.Logging": "1.1.0",
    "Microsoft.Extensions.Logging.Console": "1.1.0",
    "Microsoft.Extensions.Logging.Debug": "1.1.0",
    "Microsoft.Extensions.Options.ConfigurationExtensions": "1.1.0",
    "Microsoft.EntityFrameworkCore.SqlServer": "1.1.0",
    "Microsoft.EntityFrameworkCore.SqlServer.Design": "1.1.0",
    "Microsoft.EntityFrameworkCore.Tools": "1.1.0-preview4-final"
  },

  "tools": {
    "Microsoft.AspNetCore.Razor.Tools": "1.0.0-preview2-final",
    "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-preview2-final",
    "Microsoft.DotNet.Watcher.Tools": "1.0.0-preview2-final"
  },

  "frameworks": {
    "netcoreapp1.1": {
      "imports": [
        "dotnet5.6",
        "portable-net45+win8"
      ]
    }
  },

  "buildOptions": {
    "emitEntryPoint": true,
    "preserveCompilationContext": true
  },

  "runtimeOptions": {
    "configProperties": {
      "System.GC.Server": true
    }
  },

  "publishOptions": {
    "include": [
      "appsettings.json",
      "ClientApp/dist",
      "node_modules",
      "Views",
      "web.config",
      "wwwroot"
    ]
  },

  "scripts": {
    "prepublish": [
      "npm install",
      "node node_modules/webpack/bin/webpack.js --config webpack.config.vendor.js --env.prod",
      "node node_modules/webpack/bin/webpack.js --env.prod"
    ],
    "postpublish": [ "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" ]
  },

  "tooling": {
    "defaultNamespace": "HannaOilAndGas2"
  }
}

我還在模型和控制器中發現問題,我在使用Web API,有人可以在vs代碼中為我提供幫助嗎?

using System;
using System.Collections.Generic;

namespace HannaOilAndGas2.Data
{
    public partial class MainView
    {
        public int RecId { get; set; }
        public string Location { get; set; }
        public double? SpotFlowRate { get; set; }
        public double? PreviousDayVolume { get; set; }
        public double? LinePressure { get; set; }
        public double? DifferentialPressure { get; set; }
        public double? Temperature { get; set; }
        public double? BatteryVoltage { get; set; }
        public double? Fcp { get; set; }
        public double? Ftp { get; set; }
        public DateTime? Timestamp { get; set; }
        public string LastCommunicationMethod { get; set; }
        public string MeterId { get; set; }
        public string ImportMethod { get; set; }
        public int HannaDeviceId { get; set; }


    }
}

說找不到類型系統,它要求我將int放入方法eh。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using HannaOilAndGas2.Data;

// For more information on enabling Web API for empty projects, visit http://go.microsoft.com/fwlink/?LinkID=397860

namespace HannaOilAndGas2.Controllers
{
    [Produces("application/json")]
    [Route("api/mainview")]
    public class MainViewApi : Controller
    {
        private readonly ScadaContext _context;

        public MainViewApi(ScadaContext context)
        {
            _context = context;
        }
        // GET: api/values
        [HttpGet]
        [Route("allmainview")]          //front end - done
        public IEnumerable<MainView> GetAllMainView()
        {
            return _context.Main_View.Where(x => !x.MeterId.StartsWith("HOGC"));            
        }

        [HttpGet]
        [Route("allwinccuview")]        //front end - done
        public IEnumerable<MainView> GetAllWinccuView()
        {
            return _context.Main_View.Where(x => x.ImportMethod == "WINCCU" );
        }

        [HttpGet]
        [Route("allmanualview")]        //front end - done
        public IEnumerable<MainView> GetAllManualView()
        {
            return _context.Main_View.Where(x => x.ImportMethod == "SPREADSHEET");
        }

        [HttpGet]
        [Route("allservicestarview")]   //front end - done
        public IEnumerable<MainView> GetAllServiceStarView()
        {
            return _context.Main_View.Where(x => x.ImportMethod == "SERVICESTAR-POLL");
        }

        [Route("allcanadaview")]        //front end - done
        public IEnumerable<MainView> GetAllCanadaView()
        {
            return _context.Main_View.Where(x => x.MeterId.StartsWith("HOGC"));
        }

        // GET api/values/5
        [HttpGet("{id}")]
        public IEnumerable<MainView> GetMainViewDataById(int id)
        {
            return _context.Main_View.Where(x => x.RecId == id);
        }

        // POST api/values
        [HttpPost]
        public void Post([FromBody]string value)
        {
        }

        // PUT api/values/5
        [HttpPut("{id}")]
        public void Put(int id, [FromBody]string value)
        {
        }

        // DELETE api/values/5
        [HttpDelete("{id}")]
        public void Delete(int id)
        {
        }
    }
}

這就是說未定義預定義類型的系統字符串或再次在我的project.json中導入了netcoreapp1.1,請提供任何幫助。

Project.json更改回.csproj。 我建議您使用

dotnet migration命令

在Linux中運行時在CLI中。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM