Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Basic auto-complete support #1

Open
wants to merge 13 commits into
base: master
Choose a base branch
from
Open
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,6 @@
deploy
deploy/*
*.suo
*.cache
*.cache
*.*cache

34 changes: 15 additions & 19 deletions FastSharp.gadget/Gadget.csproj
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Deploy" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a test comment

<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
Expand All @@ -11,16 +12,14 @@
<RootNamespace>Gadget</RootNamespace>
<AssemblyName>Gadget</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<PostBuildEvent>
</PostBuildEvent>
<PreBuildEvent>
</PreBuildEvent>
<RunPostBuildEvent>Always</RunPostBuildEvent>
<FileUpgradeFlags>
</FileUpgradeFlags>
<OldToolsVersion>3.5</OldToolsVersion>
<UpgradeBackupLocation />
<OldToolsVersion>4.0</OldToolsVersion>
<TargetFrameworkProfile />
<UseIISExpress>false</UseIISExpress>
<IISExpressSSLPort />
<IISExpressAnonymousAuthentication />
<IISExpressWindowsAuthentication />
<IISExpressUseClassicPipelineMode />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Expand Down Expand Up @@ -55,21 +54,13 @@
<Content Include="src\js\jquery-1.4.1.min.js" />
<Content Include="src\js\library.js" />
<Content Include="src\js\settings.js" />
<Content Include="src\logo.png" />
<Content Include="src\settings.html" />
</ItemGroup>
<ItemGroup>
<None Include="LocalDeploy.ps1" />
<Content Include="web.config" />
<Content Include="web.Debug.config">
<DependentUpon>web.config</DependentUpon>
</Content>
<Content Include="web.Release.config">
<DependentUpon>web.config</DependentUpon>
</Content>
</ItemGroup>
<Target Name="Deploy">
<Exec Command="powershell.exe -NoProfile .\LocalDeploy.ps1" />
<!-- <Exec Command="powershell.exe -NoProfile .\LocalDeploy.ps1" /> -->
</Target>
<Target Name="Clean">
</Target>
Expand All @@ -92,5 +83,10 @@
</FlavorProperties>
</VisualStudio>
</ProjectExtensions>
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" />
</Project>
<PropertyGroup>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
</PropertyGroup>
<Import Project="$(VSToolsPath)\WebApplications\Microsoft.WebApplication.targets" Condition="'$(VSToolsPath)' != ''" />
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" Condition="false" />
</Project>
15 changes: 9 additions & 6 deletions FastSharp.sln
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@

Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.30723.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FastSharp", "FastSharp\FastSharp.csproj", "{175CBCA0-89FD-421D-BC7B-11EADEFC5EF1}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FastSharpLib", "FastSharpLib\FastSharpLib.csproj", "{A89C8C47-7986-4A0D-AD4B-B39F4AFB4345}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Gadget", "FastSharp.gadget\Gadget.csproj", "{12BE4C3A-E667-4020-8EC4-0DA4BCAC109B}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FastSharpTest", "FastSharpTest\FastSharpTest.csproj", "{DC36A643-3AD8-401B-B1EE-805BB8B8A664}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand All @@ -21,9 +23,10 @@ Global
{A89C8C47-7986-4A0D-AD4B-B39F4AFB4345}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A89C8C47-7986-4A0D-AD4B-B39F4AFB4345}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A89C8C47-7986-4A0D-AD4B-B39F4AFB4345}.Release|Any CPU.Build.0 = Release|Any CPU
{12BE4C3A-E667-4020-8EC4-0DA4BCAC109B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{12BE4C3A-E667-4020-8EC4-0DA4BCAC109B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{12BE4C3A-E667-4020-8EC4-0DA4BCAC109B}.Release|Any CPU.Build.0 = Release|Any CPU
{DC36A643-3AD8-401B-B1EE-805BB8B8A664}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DC36A643-3AD8-401B-B1EE-805BB8B8A664}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DC36A643-3AD8-401B-B1EE-805BB8B8A664}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DC36A643-3AD8-401B-B1EE-805BB8B8A664}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
Binary file added FastSharp.v2.ncrunchsolution
Binary file not shown.
Binary file added FastSharp/FastSharp.v2.ncrunchproject
Binary file not shown.
Loading