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

Added inital solution structure, early metadata support, and utilities. #1

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 50 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
*.doc diff=astextplain
*.DOC diff=astextplain
*.docx diff=astextplain
*.DOCX diff=astextplain
*.dot diff=astextplain
*.DOT diff=astextplain
*.pdf diff=astextplain
*.PDF diff=astextplain
*.rtf diff=astextplain
*.RTF diff=astextplain

*.jpg binary
*.png binary
*.gif binary

*.cs text=auto diff=csharp
*.vb text=auto
*.resx text=auto
*.c text=auto
*.cpp text=auto
*.cxx text=auto
*.h text=auto
*.hxx text=auto
*.py text=auto
*.rb text=auto
*.java text=auto
*.html text=auto
*.htm text=auto
*.css text=auto
*.scss text=auto
*.sass text=auto
*.less text=auto
*.js text=auto
*.lisp text=auto
*.clj text=auto
*.sql text=auto
*.php text=auto
*.lua text=auto
*.m text=auto
*.asm text=auto
*.erl text=auto
*.fs text=auto
*.fsx text=auto
*.hs text=auto

*.csproj text=auto
*.vbproj text=auto
*.fsproj text=auto
*.dbproj text=auto
*.sln text=auto eol=crlf
31 changes: 31 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
[Oo]bj/
[Bb]in/
*.xap
*.user
/TestResults
*.vspscc
*.vssscc
*.suo
*.cache
*.docstates
_ReSharper.*
*.csproj.user
*[Rr]e[Ss]harper.user
_ReSharper.*/
packages/*
artifacts/*
msbuild.log
PublishProfiles/
*.psess
*.vsp
*.pidb
*.userprefs
*DS_Store
*.ncrunchsolution
*.log
*.vspx
/.symbols
nuget.exe
build/
*net45.csproj
*k10.csproj
117 changes: 117 additions & 0 deletions Data.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,117 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.30110.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Microsoft.Data.Core", "src\Microsoft.Data.Core\Microsoft.Data.Core.csproj", "{6A531BB3-DF57-4743-AF3B-4BE431B67DE6}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Microsoft.Data.InMemory", "src\Microsoft.Data.InMemory\Microsoft.Data.InMemory.csproj", "{01F860AB-80DD-4AB4-B495-D5B20A493E60}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Microsoft.Data.Core.UnitTest", "test\Microsoft.Data.Tests.Unit\Microsoft.Data.Core.UnitTest.csproj", "{FB272D58-D5FD-41D1-9E02-BCE17FD97F0E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Microsoft.Data.Core.FunctionalTest", "test\Microsoft.Data.Tests.Functional\Microsoft.Data.Core.FunctionalTest.csproj", "{A08C9073-CB43-409E-9A5E-4BE2CA687FE3}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{35BED7DE-CA6F-41EA-91E3-25CA7295C7B9}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{547020C0-976F-4542-81CE-7FD465595614}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Microsoft.Data.Relational", "src\Microsoft.Data.Relational\Microsoft.Data.Relational.csproj", "{8C045113-8E76-4910-9C61-95BC82BB3003}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Microsoft.Data.SQLite", "src\Microsoft.Data.SQLite\Microsoft.Data.SQLite.csproj", "{33D71368-9175-4A74-831E-11ACE6D815EE}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Microsoft.Data.SqlServer", "src\Microsoft.Data.SqlServer\Microsoft.Data.SqlServer.csproj", "{D30CDA1E-CD18-42CE-934F-F33162F1B6EC}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|Mixed Platforms = Debug|Mixed Platforms
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|Mixed Platforms = Release|Mixed Platforms
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{6A531BB3-DF57-4743-AF3B-4BE431B67DE6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6A531BB3-DF57-4743-AF3B-4BE431B67DE6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6A531BB3-DF57-4743-AF3B-4BE431B67DE6}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{6A531BB3-DF57-4743-AF3B-4BE431B67DE6}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{6A531BB3-DF57-4743-AF3B-4BE431B67DE6}.Debug|x86.ActiveCfg = Debug|Any CPU
{6A531BB3-DF57-4743-AF3B-4BE431B67DE6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6A531BB3-DF57-4743-AF3B-4BE431B67DE6}.Release|Any CPU.Build.0 = Release|Any CPU
{6A531BB3-DF57-4743-AF3B-4BE431B67DE6}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{6A531BB3-DF57-4743-AF3B-4BE431B67DE6}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{6A531BB3-DF57-4743-AF3B-4BE431B67DE6}.Release|x86.ActiveCfg = Release|Any CPU
{01F860AB-80DD-4AB4-B495-D5B20A493E60}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{01F860AB-80DD-4AB4-B495-D5B20A493E60}.Debug|Any CPU.Build.0 = Debug|Any CPU
{01F860AB-80DD-4AB4-B495-D5B20A493E60}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{01F860AB-80DD-4AB4-B495-D5B20A493E60}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{01F860AB-80DD-4AB4-B495-D5B20A493E60}.Debug|x86.ActiveCfg = Debug|Any CPU
{01F860AB-80DD-4AB4-B495-D5B20A493E60}.Release|Any CPU.ActiveCfg = Release|Any CPU
{01F860AB-80DD-4AB4-B495-D5B20A493E60}.Release|Any CPU.Build.0 = Release|Any CPU
{01F860AB-80DD-4AB4-B495-D5B20A493E60}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{01F860AB-80DD-4AB4-B495-D5B20A493E60}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{01F860AB-80DD-4AB4-B495-D5B20A493E60}.Release|x86.ActiveCfg = Release|Any CPU
{FB272D58-D5FD-41D1-9E02-BCE17FD97F0E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FB272D58-D5FD-41D1-9E02-BCE17FD97F0E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FB272D58-D5FD-41D1-9E02-BCE17FD97F0E}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{FB272D58-D5FD-41D1-9E02-BCE17FD97F0E}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{FB272D58-D5FD-41D1-9E02-BCE17FD97F0E}.Debug|x86.ActiveCfg = Debug|Any CPU
{FB272D58-D5FD-41D1-9E02-BCE17FD97F0E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FB272D58-D5FD-41D1-9E02-BCE17FD97F0E}.Release|Any CPU.Build.0 = Release|Any CPU
{FB272D58-D5FD-41D1-9E02-BCE17FD97F0E}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{FB272D58-D5FD-41D1-9E02-BCE17FD97F0E}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{FB272D58-D5FD-41D1-9E02-BCE17FD97F0E}.Release|x86.ActiveCfg = Release|Any CPU
{A08C9073-CB43-409E-9A5E-4BE2CA687FE3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A08C9073-CB43-409E-9A5E-4BE2CA687FE3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A08C9073-CB43-409E-9A5E-4BE2CA687FE3}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{A08C9073-CB43-409E-9A5E-4BE2CA687FE3}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{A08C9073-CB43-409E-9A5E-4BE2CA687FE3}.Debug|x86.ActiveCfg = Debug|Any CPU
{A08C9073-CB43-409E-9A5E-4BE2CA687FE3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A08C9073-CB43-409E-9A5E-4BE2CA687FE3}.Release|Any CPU.Build.0 = Release|Any CPU
{A08C9073-CB43-409E-9A5E-4BE2CA687FE3}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{A08C9073-CB43-409E-9A5E-4BE2CA687FE3}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{A08C9073-CB43-409E-9A5E-4BE2CA687FE3}.Release|x86.ActiveCfg = Release|Any CPU
{8C045113-8E76-4910-9C61-95BC82BB3003}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8C045113-8E76-4910-9C61-95BC82BB3003}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8C045113-8E76-4910-9C61-95BC82BB3003}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{8C045113-8E76-4910-9C61-95BC82BB3003}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{8C045113-8E76-4910-9C61-95BC82BB3003}.Debug|x86.ActiveCfg = Debug|Any CPU
{8C045113-8E76-4910-9C61-95BC82BB3003}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8C045113-8E76-4910-9C61-95BC82BB3003}.Release|Any CPU.Build.0 = Release|Any CPU
{8C045113-8E76-4910-9C61-95BC82BB3003}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{8C045113-8E76-4910-9C61-95BC82BB3003}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{8C045113-8E76-4910-9C61-95BC82BB3003}.Release|x86.ActiveCfg = Release|Any CPU
{33D71368-9175-4A74-831E-11ACE6D815EE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{33D71368-9175-4A74-831E-11ACE6D815EE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{33D71368-9175-4A74-831E-11ACE6D815EE}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{33D71368-9175-4A74-831E-11ACE6D815EE}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{33D71368-9175-4A74-831E-11ACE6D815EE}.Debug|x86.ActiveCfg = Debug|Any CPU
{33D71368-9175-4A74-831E-11ACE6D815EE}.Release|Any CPU.ActiveCfg = Release|Any CPU
{33D71368-9175-4A74-831E-11ACE6D815EE}.Release|Any CPU.Build.0 = Release|Any CPU
{33D71368-9175-4A74-831E-11ACE6D815EE}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{33D71368-9175-4A74-831E-11ACE6D815EE}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{33D71368-9175-4A74-831E-11ACE6D815EE}.Release|x86.ActiveCfg = Release|Any CPU
{D30CDA1E-CD18-42CE-934F-F33162F1B6EC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D30CDA1E-CD18-42CE-934F-F33162F1B6EC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D30CDA1E-CD18-42CE-934F-F33162F1B6EC}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{D30CDA1E-CD18-42CE-934F-F33162F1B6EC}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{D30CDA1E-CD18-42CE-934F-F33162F1B6EC}.Debug|x86.ActiveCfg = Debug|Any CPU
{D30CDA1E-CD18-42CE-934F-F33162F1B6EC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D30CDA1E-CD18-42CE-934F-F33162F1B6EC}.Release|Any CPU.Build.0 = Release|Any CPU
{D30CDA1E-CD18-42CE-934F-F33162F1B6EC}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{D30CDA1E-CD18-42CE-934F-F33162F1B6EC}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{D30CDA1E-CD18-42CE-934F-F33162F1B6EC}.Release|x86.ActiveCfg = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{01F860AB-80DD-4AB4-B495-D5B20A493E60} = {35BED7DE-CA6F-41EA-91E3-25CA7295C7B9}
{6A531BB3-DF57-4743-AF3B-4BE431B67DE6} = {35BED7DE-CA6F-41EA-91E3-25CA7295C7B9}
{8C045113-8E76-4910-9C61-95BC82BB3003} = {35BED7DE-CA6F-41EA-91E3-25CA7295C7B9}
{33D71368-9175-4A74-831E-11ACE6D815EE} = {35BED7DE-CA6F-41EA-91E3-25CA7295C7B9}
{D30CDA1E-CD18-42CE-934F-F33162F1B6EC} = {35BED7DE-CA6F-41EA-91E3-25CA7295C7B9}
{A08C9073-CB43-409E-9A5E-4BE2CA687FE3} = {547020C0-976F-4542-81CE-7FD465595614}
{FB272D58-D5FD-41D1-9E02-BCE17FD97F0E} = {547020C0-976F-4542-81CE-7FD465595614}
EndGlobalSection
EndGlobal
67 changes: 67 additions & 0 deletions Data.sln.DotSettings
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">

<s:String x:Key="/Default/CodeStyle/CodeCleanup/Profiles/=EntityFramework/@EntryIndexedValue">&lt;?xml version="1.0" encoding="utf-16"?&gt;&lt;Profile name="EntityFramework"&gt;&lt;HtmlReformatCode&gt;True&lt;/HtmlReformatCode&gt;&lt;CSArrangeThisQualifier&gt;True&lt;/CSArrangeThisQualifier&gt;&lt;CSRemoveCodeRedundancies&gt;True&lt;/CSRemoveCodeRedundancies&gt;&lt;CSUseAutoProperty&gt;True&lt;/CSUseAutoProperty&gt;&lt;CSMakeFieldReadonly&gt;True&lt;/CSMakeFieldReadonly&gt;&lt;CSUseVar&gt;&lt;BehavourStyle&gt;CAN_CHANGE_TO_IMPLICIT&lt;/BehavourStyle&gt;&lt;LocalVariableStyle&gt;ALWAYS_IMPLICIT&lt;/LocalVariableStyle&gt;&lt;ForeachVariableStyle&gt;ALWAYS_IMPLICIT&lt;/ForeachVariableStyle&gt;&lt;/CSUseVar&gt;&lt;CSOptimizeUsings&gt;&lt;OptimizeUsings&gt;True&lt;/OptimizeUsings&gt;&lt;EmbraceInRegion&gt;False&lt;/EmbraceInRegion&gt;&lt;RegionName&gt;&lt;/RegionName&gt;&lt;/CSOptimizeUsings&gt;&lt;CSShortenReferences&gt;True&lt;/CSShortenReferences&gt;&lt;CSReformatCode&gt;True&lt;/CSReformatCode&gt;&lt;XMLReformatCode&gt;True&lt;/XMLReformatCode&gt;&lt;CSUpdateFileHeader&gt;True&lt;/CSUpdateFileHeader&gt;&lt;CSharpFormatDocComments&gt;True&lt;/CSharpFormatDocComments&gt;&lt;/Profile&gt;</s:String>

<s:String x:Key="/Default/CodeStyle/CodeCleanup/RecentlyUsedProfile/@EntryValue">EntityFramework</s:String>
<s:String x:Key="/Default/CodeStyle/CodeCleanup/SilentCleanupProfile/@EntryValue">EntityFramework</s:String>
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/ALIGN_MULTILINE_ARGUMENT/@EntryValue">False</s:Boolean>
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/ALIGN_MULTILINE_CALLS_CHAIN/@EntryValue">False</s:Boolean>
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/ALIGN_MULTILINE_PARAMETER/@EntryValue">False</s:Boolean>
<s:String x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/FORCE_ATTRIBUTE_STYLE/@EntryValue">SEPARATE</s:String>
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/FORCE_CHOP_COMPOUND_DO_EXPRESSION/@EntryValue">True</s:Boolean>
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/FORCE_CHOP_COMPOUND_IF_EXPRESSION/@EntryValue">True</s:Boolean>
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/FORCE_CHOP_COMPOUND_WHILE_EXPRESSION/@EntryValue">True</s:Boolean>
<s:String x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/FORCE_FIXED_BRACES_STYLE/@EntryValue">ALWAYS_ADD</s:String>
<s:String x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/FORCE_FOR_BRACES_STYLE/@EntryValue">ALWAYS_ADD</s:String>
<s:String x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/FORCE_FOREACH_BRACES_STYLE/@EntryValue">ALWAYS_ADD</s:String>
<s:String x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/FORCE_IFELSE_BRACES_STYLE/@EntryValue">ALWAYS_ADD</s:String>
<s:String x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/FORCE_USING_BRACES_STYLE/@EntryValue">ALWAYS_ADD</s:String>
<s:String x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/FORCE_WHILE_BRACES_STYLE/@EntryValue">ALWAYS_ADD</s:String>
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/INDENT_NESTED_USINGS_STMT/@EntryValue">True</s:Boolean>
<s:Int64 x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/KEEP_BLANK_LINES_IN_CODE/@EntryValue">1</s:Int64>
<s:Int64 x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/KEEP_BLANK_LINES_IN_DECLARATIONS/@EntryValue">1</s:Int64>
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/LINE_FEED_AT_FILE_END/@EntryValue">True</s:Boolean>
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/PLACE_CONSTRUCTOR_INITIALIZER_ON_SAME_LINE/@EntryValue">False</s:Boolean>
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/PLACE_FIELD_ATTRIBUTE_ON_SAME_LINE/@EntryValue">False</s:Boolean>
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/PLACE_SIMPLE_LINQ_ON_SINGLE_LINE/@EntryValue">False</s:Boolean>
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/PLACE_WHILE_ON_NEW_LINE/@EntryValue">True</s:Boolean>
<s:String x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/SIMPLE_EMBEDDED_STATEMENT_STYLE/@EntryValue">LINE_BREAK</s:String>
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/SPACE_AFTER_TYPECAST_PARENTHESES/@EntryValue">False</s:Boolean>
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/SPACE_AROUND_MULTIPLICATIVE_OP/@EntryValue">True</s:Boolean>
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/SPACE_BEFORE_TYPEOF_PARENTHESES/@EntryValue">False</s:Boolean>
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/SPACE_WITHIN_SINGLE_LINE_ARRAY_INITIALIZER_BRACES/@EntryValue">True</s:Boolean>
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/WRAP_AFTER_DECLARATION_LPAR/@EntryValue">True</s:Boolean>
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/WRAP_AFTER_INVOCATION_LPAR/@EntryValue">True</s:Boolean>
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/WRAP_BEFORE_BINARY_OPSIGN/@EntryValue">True</s:Boolean>
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/WRAP_BEFORE_FIRST_TYPE_PARAMETER_CONSTRAINT/@EntryValue">True</s:Boolean>
<s:Int64 x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/WRAP_LIMIT/@EntryValue">140</s:Int64>
<s:String x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/WRAP_MULTIPLE_TYPE_PARAMEER_CONSTRAINTS_STYLE/@EntryValue">CHOP_ALWAYS</s:String>
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/JavaScriptCodeFormatting/ALIGN_MULTIPLE_DECLARATION/@EntryValue">True</s:Boolean>

<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/JavaScriptCodeFormatting/JavaScriptFormatOther/ALIGN_MULTIPLE_DECLARATION/@EntryValue">True</s:Boolean>
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/XmlFormatter/WrapBeforeAttr/@EntryValue">False</s:Boolean>
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/XmlFormatter/WrapInsideText/@EntryValue">True</s:Boolean>
<s:Boolean x:Key="/Default/CodeStyle/CSharpUsing/AddImportsToDeepestScope/@EntryValue">True</s:Boolean>
<s:Boolean x:Key="/Default/CodeStyle/CSharpUsing/QualifiedUsingAtNestedScope/@EntryValue">True</s:Boolean>
<s:String x:Key="/Default/CodeStyle/FileHeader/FileHeaderText/@EntryValue">Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.&#xD;
</s:String>
<s:Boolean x:Key="/Default/CodeStyle/Generate/=Constructor/@KeyIndexDefined">True</s:Boolean>
<s:String x:Key="/Default/CodeStyle/Generate/=Constructor/Options/=XmlDocumentation/@EntryIndexedValue">True</s:String>
<s:Boolean x:Key="/Default/CodeStyle/Generate/=Equality/@KeyIndexDefined">True</s:Boolean>
<s:String x:Key="/Default/CodeStyle/Generate/=Equality/Options/=ChangeEquals/@EntryIndexedValue">Side by side</s:String>
<s:String x:Key="/Default/CodeStyle/Generate/=Equality/Options/=ChangeGetHashCode/@EntryIndexedValue">Side by side</s:String>
<s:String x:Key="/Default/CodeStyle/Generate/=Equality/Options/=EqualityOperators/@EntryIndexedValue">False</s:String>
<s:String x:Key="/Default/CodeStyle/Generate/=Equality/Options/=ImplementIEquatable/@EntryIndexedValue">False</s:String>
<s:String x:Key="/Default/CodeStyle/Generate/=Equality/Options/=XmlDocumentation/@EntryIndexedValue">False</s:String>
<s:Boolean x:Key="/Default/CodeStyle/Generate/=Implementations/@KeyIndexDefined">True</s:Boolean>
<s:String x:Key="/Default/CodeStyle/Generate/=Implementations/Options/=WrapInRegion/@EntryIndexedValue">False</s:String>
<s:String x:Key="/Default/CodeStyle/Generate/=Implementations/Options/=XmlDocumentation/@EntryIndexedValue">False</s:String>
<s:Boolean x:Key="/Default/CodeStyle/Generate/=Overrides/@KeyIndexDefined">True</s:Boolean>
<s:String x:Key="/Default/CodeStyle/Generate/=Overrides/Options/=WrapInRegion/@EntryIndexedValue">False</s:String>
<s:String x:Key="/Default/CodeStyle/Generate/=Overrides/Options/=XmlDocumentation/@EntryIndexedValue">False</s:String>
<s:Boolean x:Key="/Default/CodeStyle/IntroduceVariableUseVar/UseVarForIntroduceVariableRefactoring/@EntryValue">True</s:Boolean>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/EventHandlerPatternLong/@EntryValue">$object$_On$event$</s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/PredefinedNamingRules/=PrivateStaticReadonly/@EntryIndexedValue">&lt;Policy Inspect="True" Prefix="_" Suffix="" Style="aaBb" /&gt;</s:String>
<s:String x:Key="/Default/CodeStyle/Naming/VBNaming/EventHandlerPatternLong/@EntryValue">$object$_On$event$</s:String>
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ESettingsUpgrade_002EMigrateBlankLinesAroundFieldToBlankLinesAroundProperty/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002EJavaScript_002ECodeStyle_002ESettingsUpgrade_002EJsCodeFormatterSettingsUpgrader/@EntryIndexedValue">True</s:Boolean></wpf:ResourceDictionary>
13 changes: 13 additions & 0 deletions NuGet.Config
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<add key="AspNetVNext" value="https://www.myget.org/F/aspnetvnext/" />
<add key="NuGet.org" value="https://nuget.org/api/v2/" />
</packageSources>
<packageSourceCredentials>
<AspNetVNext>
<add key="Username" value="aspnetreadonly" />
<add key="ClearTextPassword" value="4d8a2d9c-7b80-4162-9978-47e918c9658c" />
</AspNetVNext>
</packageSourceCredentials>
</configuration>
Loading