Skip to content

Commit

Permalink
Initial commit of project files.
Browse files Browse the repository at this point in the history
  • Loading branch information
meverett committed Dec 3, 2016
0 parents commit f6038cd
Show file tree
Hide file tree
Showing 142 changed files with 44,729 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .gitignore
@@ -0,0 +1,18 @@
*.log
*.bak
*.old
*.disabled
*.zip
unity/*
packages/*
# allow packages/repositories.config only
!packages/repositories.config
[Dd]ebug/
[Rr]elease/
[Bb]in/
[Oo]bj/
*.suo
*.user
.vs/config/applicationhost.config
src/*.Testing/*.xml
ImagesRaw/
22 changes: 22 additions & 0 deletions CymaticLabs.InfluxDB.sln
@@ -0,0 +1,22 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.25420.1
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CymaticLabs.InfluxDB.Studio", "src\CymaticLabs.InfluxDB.Studio\CymaticLabs.InfluxDB.Studio.csproj", "{0578E050-27C9-4345-A6C9-EBAA887611D2}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{0578E050-27C9-4345-A6C9-EBAA887611D2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0578E050-27C9-4345-A6C9-EBAA887611D2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0578E050-27C9-4345-A6C9-EBAA887611D2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0578E050-27C9-4345-A6C9-EBAA887611D2}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
21 changes: 21 additions & 0 deletions LICENSE
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2016 CymaticLabs

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
2 changes: 2 additions & 0 deletions README.md
@@ -0,0 +1,2 @@
# InfluxDBStudio
.NET Management Tools for InfluxDB and the TICK stack
54 changes: 54 additions & 0 deletions src/CymaticLabs.InfluxDB.Studio/App.config
@@ -0,0 +1,54 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="CymaticLabs.InfluxDB.Studio.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
</sectionGroup>
<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" />
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
<userSettings>
<CymaticLabs.InfluxDB.Studio.Properties.Settings>
<setting name="ConnectionsJson" serializeAs="String">
<value />
</setting>
<setting name="AllowUntrustedSsl" serializeAs="String">
<value>False</value>
</setting>
</CymaticLabs.InfluxDB.Studio.Properties.Settings>
</userSettings>
<log4net>
<appender name="ConsoleAppender" type="log4net.Appender.ColoredConsoleAppender">
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="[%level] %date - %message%newline" />
</layout>
</appender>
<appender name="LogFileAppender" type="log4net.Appender.RollingFileAppender">
<param name="File" value=".\InfluxDBStudio.log" />
<param name="AppendToFile" value="true" />
<rollingStyle value="Size" />
<maxSizeRollBackups value="10" />
<maximumFileSize value="10MB" />
<staticLogFileName value="true" />
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="[%level] %date - %message%newline" />
</layout>
</appender>
<logger name="AppLogger">
<appender-ref ref="LogFileAppender" />
</logger>
<root>
<level value="DEBUG" />
</root>
</log4net>
</configuration>

0 comments on commit f6038cd

Please sign in to comment.