2016-05-10 32 views
0

http://docs.nuget.org/create/hosting-your-own-nuget-feedsのドキュメントにしたがってNuget Serverを設定しています。私はすべての手順を踏んだが、私がVSを走らせると上記のエラーが出る。エラーから私はセクションを欠いていますが、どのセクションが欠けていて、どのようにそのセクションを追加しますか?私はスタックとGoogleを検索し、答えを見つけることができませんでした。ここでは、web.configファイル設定セクション 'system.ServiceModel'を読み取ることができません。セクション宣言がありません

?xml version="1.0"?> 

<!-- 
    For more information on how to configure your ASP.NET application, please visit 
    http://go.microsoft.com/fwlink/?LinkId=169433 
    --> 

<configuration> 
    <system.web> 
     <compilation debug="true" targetFramework="4.5.2"/> 
     <httpRuntime targetFramework="4.5.2"/> 
    </system.web> 
    <appSettings> 
    <add key ="packagePath" value="E:\HostedNugetServer"/> 
    </appSettings> 
    <system.ServiceModel> 
    <serviceHostingEnvironment aspNetCompatibilityEnabled="true"/> 
    </system.ServiceModel> 
</configuration> 

答えて

1

ためのコードはこれがあなたの記事でちょうどタイプミスかもしれませんが、お使いのシステムのサービスモデルの宣言はserviceModelに小文字の「s」でなければなりません。

<system.serviceModel> 
    <serviceHostingEnvironment aspNetCompatibilityEnabled="true"/> 
</system.serviceModel> 
+0

ありがとうございました – Aaron

+0

この問題が解決した場合は、abrownの回答を正しい@Aaronとしてマークする必要があります。 – cloudstrifebro

+0

もちろん、ちょうど数分待たなければならなかった – Aaron

関連する問題