source: uKadecot/trunk/tools/EcnlControllerUI/NiseWebSocket/NiseWebSocket.csproj

Last change on this file was 125, checked in by coas-nagasima, 9 years ago

ECHONET Lite規格に準拠していない動作を修正。
WebSocketの接続先URLを/webapi.ashxから/webapiに変更。
DHCPのリトライ処理が行われていなかったのを修正。
DHCPの有効/無効設定を追加し、固定IPアドレスを設定できるよう変更。

  • Property svn:eol-style set to CRLF
  • Property svn:mime-type set to text/plain
File size: 5.5 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3 <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4 <PropertyGroup>
5 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7 <ProductVersion>
8 </ProductVersion>
9 <SchemaVersion>2.0</SchemaVersion>
10 <ProjectGuid>{81B67899-0985-4AEA-B520-54FC639844B4}</ProjectGuid>
11 <ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
12 <OutputType>Library</OutputType>
13 <AppDesignerFolder>Properties</AppDesignerFolder>
14 <RootNamespace>nisews</RootNamespace>
15 <AssemblyName>NiseWebSocket</AssemblyName>
16 <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
17 <UseIISExpress>true</UseIISExpress>
18 <IISExpressSSLPort />
19 <IISExpressAnonymousAuthentication />
20 <IISExpressWindowsAuthentication />
21 <IISExpressUseClassicPipelineMode />
22 <NoStdLib>True</NoStdLib>
23 <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
24 <RestorePackages>true</RestorePackages>
25 </PropertyGroup>
26 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
27 <DebugSymbols>true</DebugSymbols>
28 <DebugType>full</DebugType>
29 <Optimize>false</Optimize>
30 <OutputPath>bin\</OutputPath>
31 <DefineConstants>DEBUG;TRACE</DefineConstants>
32 <ErrorReport>prompt</ErrorReport>
33 <WarningLevel>4</WarningLevel>
34 </PropertyGroup>
35 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
36 <DebugType>pdbonly</DebugType>
37 <Optimize>true</Optimize>
38 <OutputPath>bin\</OutputPath>
39 <DefineConstants>TRACE</DefineConstants>
40 <ErrorReport>prompt</ErrorReport>
41 <WarningLevel>4</WarningLevel>
42 </PropertyGroup>
43 <ItemGroup>
44 <Content Include="Web.config" />
45 </ItemGroup>
46 <ItemGroup>
47 <Compile Include="NiseWebSocket.cs" />
48 <Compile Include="Properties\AssemblyInfo.cs" />
49 </ItemGroup>
50 <ItemGroup>
51 <Content Include="packages.config" />
52 <None Include="Web.Debug.config">
53 <DependentUpon>Web.config</DependentUpon>
54 </None>
55 <None Include="Web.Release.config">
56 <DependentUpon>Web.config</DependentUpon>
57 </None>
58 </ItemGroup>
59 <ItemGroup>
60 <Reference Include="mscorlib">
61 <HintPath>$(SolutionDir)packages\Saltarelle.Runtime.2.6.2\tools\Assemblies\mscorlib.dll</HintPath>
62 </Reference>
63 <Reference Include="Saltarelle.Web">
64 <HintPath>..\packages\Saltarelle.Web.3.1.0\lib\Saltarelle.Web.dll</HintPath>
65 </Reference>
66 <Reference Include="Saltarelle.Linq">
67 <HintPath>..\packages\Saltarelle.Linq.2.4.0\lib\Saltarelle.Linq.dll</HintPath>
68 </Reference>
69 <Reference Include="Saltarelle.jQuery">
70 <HintPath>..\packages\Saltarelle.jQuery.1.10.1\lib\Saltarelle.jQuery.dll</HintPath>
71 </Reference>
72 </ItemGroup>
73 <PropertyGroup>
74 <VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
75 <VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
76 </PropertyGroup>
77 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" Condition="!Exists('$(SolutionDir)packages\Saltarelle.Compiler.2.6.2\tools\Saltarelle.Compiler.targets')" />
78 <Import Project="$(SolutionDir)packages\Saltarelle.Compiler.2.6.2\tools\Saltarelle.Compiler.targets" Condition="Exists('$(SolutionDir)packages\Saltarelle.Compiler.2.6.2\tools\Saltarelle.Compiler.targets')" />
79 <Import Project="$(VSToolsPath)\WebApplications\Microsoft.WebApplication.targets" Condition="'$(VSToolsPath)' != ''" />
80 <Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" Condition="false" />
81 <ProjectExtensions>
82 <VisualStudio>
83 <FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
84 <WebProjectProperties>
85 <UseIIS>True</UseIIS>
86 <AutoAssignPort>True</AutoAssignPort>
87 <DevelopmentServerPort>0</DevelopmentServerPort>
88 <DevelopmentServerVPath>/</DevelopmentServerVPath>
89 <IISUrl>http://localhost:51941/</IISUrl>
90 <NTLMAuthentication>False</NTLMAuthentication>
91 <UseCustomServer>False</UseCustomServer>
92 <CustomServerUrl>
93 </CustomServerUrl>
94 <SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
95 </WebProjectProperties>
96 </FlavorProperties>
97 </VisualStudio>
98 </ProjectExtensions>
99 <PropertyGroup>
100 <PostBuildEvent>copy "$(ProjectDir)$(OutDir)$(TargetName).js" "$(SolutionDir)EcnlCtrlUI\js\nisews.js"
101$(SolutionDir)tools\jsmin &lt; "$(ProjectDir)$(OutDir)$(TargetName).js" &gt; "$(SolutionDir)EcnlCtrlUI\js\nisews.min.js" "Copyright (C) 2015 by TOPPERS Project, Inc., JAPAN"</PostBuildEvent>
102 </PropertyGroup>
103 <Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
104 <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
105 Other similar extension points exist, see Microsoft.Common.targets.
106 <Target Name="BeforeBuild">
107 </Target>
108 <Target Name="AfterBuild">
109 </Target>
110 -->
111</Project>
Note: See TracBrowser for help on using the repository browser.