-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add solution DotSettings file (#1303)
- Loading branch information
1 parent
1837e64
commit 1bb081a
Showing
1 changed file
with
214 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,214 @@ | ||
<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:Boolean x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=020B98D17DF67944A12E1EE5B68E5A81/@KeyIndexDefined">True</s:Boolean> | ||
<s:Boolean x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=020B98D17DF67944A12E1EE5B68E5A81/Applicability/=Live/@EntryIndexedValue">True</s:Boolean> | ||
<s:String x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=020B98D17DF67944A12E1EE5B68E5A81/Description/@EntryValue">Equals for base class</s:String> | ||
<s:Boolean x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=020B98D17DF67944A12E1EE5B68E5A81/Field/=type_005Fname/@KeyIndexDefined">True</s:Boolean> | ||
<s:String x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=020B98D17DF67944A12E1EE5B68E5A81/Field/=type_005Fname/Expression/@EntryValue">typeName()</s:String> | ||
<s:Int64 x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=020B98D17DF67944A12E1EE5B68E5A81/Field/=type_005Fname/InitialRange/@EntryValue">-1</s:Int64> | ||
<s:Int64 x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=020B98D17DF67944A12E1EE5B68E5A81/Field/=type_005Fname/Order/@EntryValue">0</s:Int64> | ||
<s:Boolean x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=020B98D17DF67944A12E1EE5B68E5A81/Scope/=B68999B9D6B43E47A02B22C12A54C3CC/@KeyIndexDefined">True</s:Boolean> | ||
<s:String x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=020B98D17DF67944A12E1EE5B68E5A81/Scope/=B68999B9D6B43E47A02B22C12A54C3CC/CustomProperties/=minimumLanguageVersion/@EntryIndexedValue">2.0</s:String> | ||
<s:String x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=020B98D17DF67944A12E1EE5B68E5A81/Scope/=B68999B9D6B43E47A02B22C12A54C3CC/Type/@EntryValue">InCSharpTypeMember</s:String> | ||
|
||
|
||
|
||
<s:String x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=020B98D17DF67944A12E1EE5B68E5A81/Shortcut/@EntryValue">eq</s:String> | ||
<s:Boolean x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=020B98D17DF67944A12E1EE5B68E5A81/ShortenQualifiedReferences/@EntryValue">True</s:Boolean> | ||
<s:String x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=020B98D17DF67944A12E1EE5B68E5A81/Text/@EntryValue"> public override bool Equals(object obj) => | ||
Equals(obj as $type_name$); | ||
|
||
public bool Equals($type_name$ other) | ||
{ | ||
if (object.ReferenceEquals(other, null)) { return false; } | ||
if (object.ReferenceEquals(this, other)) { return true; } | ||
return | ||
GetType().Equals(other.GetType()) && | ||
// compare members here. | ||
$END$; | ||
}</s:String> | ||
<s:Int64 x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=2CAB0A567F30704CA99AA3EC249E3153/Field/=CLASS/Order/@EntryValue">0</s:Int64> | ||
<s:Boolean x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=2CAB0A567F30704CA99AA3EC249E3153/Field/=HEADER/@KeyIndexDefined">False</s:Boolean> | ||
<s:Int64 x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=2CAB0A567F30704CA99AA3EC249E3153/Field/=NAMESPACE/Order/@EntryValue">1</s:Int64> | ||
<s:String x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=2CAB0A567F30704CA99AA3EC249E3153/Text/@EntryValue">/* Copyright 2010-present MongoDB Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
namespace $NAMESPACE$ | ||
{ | ||
public class $CLASS$ {$END$} | ||
}</s:String> | ||
<s:Boolean x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=37AB964D6E4D424BBE2530F92DA37EEB/Field/=HEADER/@KeyIndexDefined">False</s:Boolean> | ||
<s:Int64 x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=37AB964D6E4D424BBE2530F92DA37EEB/Field/=NAMESPACE/Order/@EntryValue">1</s:Int64> | ||
<s:Int64 x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=37AB964D6E4D424BBE2530F92DA37EEB/Field/=RECORD/Order/@EntryValue">0</s:Int64> | ||
<s:String x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=37AB964D6E4D424BBE2530F92DA37EEB/Text/@EntryValue">/* Copyright 2010-present MongoDB Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
namespace $NAMESPACE$ | ||
{ | ||
public record $RECORD$($END$); | ||
}</s:String> | ||
<s:Boolean x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=6DCBB4DD2349E149B01440190986BD55/@KeyIndexDefined">True</s:Boolean> | ||
<s:Boolean x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=6DCBB4DD2349E149B01440190986BD55/Applicability/=Live/@EntryIndexedValue">True</s:Boolean> | ||
<s:String x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=6DCBB4DD2349E149B01440190986BD55/Description/@EntryValue">Equals for derived class</s:String> | ||
<s:Boolean x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=6DCBB4DD2349E149B01440190986BD55/Field/=type_005Fname/@KeyIndexDefined">True</s:Boolean> | ||
<s:String x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=6DCBB4DD2349E149B01440190986BD55/Field/=type_005Fname/Expression/@EntryValue">typeName()</s:String> | ||
<s:Int64 x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=6DCBB4DD2349E149B01440190986BD55/Field/=type_005Fname/InitialRange/@EntryValue">-1</s:Int64> | ||
<s:Int64 x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=6DCBB4DD2349E149B01440190986BD55/Field/=type_005Fname/Order/@EntryValue">0</s:Int64> | ||
<s:Boolean x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=6DCBB4DD2349E149B01440190986BD55/Scope/=B68999B9D6B43E47A02B22C12A54C3CC/@KeyIndexDefined">True</s:Boolean> | ||
<s:String x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=6DCBB4DD2349E149B01440190986BD55/Scope/=B68999B9D6B43E47A02B22C12A54C3CC/CustomProperties/=minimumLanguageVersion/@EntryIndexedValue">2.0</s:String> | ||
<s:String x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=6DCBB4DD2349E149B01440190986BD55/Scope/=B68999B9D6B43E47A02B22C12A54C3CC/Type/@EntryValue">InCSharpTypeMember</s:String> | ||
|
||
|
||
|
||
<s:String x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=6DCBB4DD2349E149B01440190986BD55/Shortcut/@EntryValue">eq</s:String> | ||
<s:Boolean x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=6DCBB4DD2349E149B01440190986BD55/ShortenQualifiedReferences/@EntryValue">True</s:Boolean> | ||
<s:String x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=6DCBB4DD2349E149B01440190986BD55/Text/@EntryValue"> public override bool Equals(object obj) => | ||
Equals(obj as $type_name$); | ||
|
||
public bool Equals($type_name$ other) | ||
{ | ||
if (object.ReferenceEquals(other, null)) { return false; } | ||
if (object.ReferenceEquals(this, other)) { return true; } | ||
return | ||
base.Equals(other) && | ||
// compare members here. | ||
$END$; | ||
}</s:String> | ||
<s:Boolean x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=6FAA6736247D464489DF536819A6D103/Field/=HEADER/@KeyIndexDefined">False</s:Boolean> | ||
<s:Int64 x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=6FAA6736247D464489DF536819A6D103/Field/=INTERFACE/Order/@EntryValue">0</s:Int64> | ||
<s:Int64 x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=6FAA6736247D464489DF536819A6D103/Field/=NAMESPACE/Order/@EntryValue">1</s:Int64> | ||
<s:String x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=6FAA6736247D464489DF536819A6D103/Text/@EntryValue">/* Copyright 2010-present MongoDB Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
namespace $NAMESPACE$ | ||
{ | ||
public interface $INTERFACE$ {$END$} | ||
}</s:String> | ||
<s:Int64 x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=7B10AC30B0320A4F95A3763001E1DBF6/Field/=ENUM/Order/@EntryValue">0</s:Int64> | ||
<s:Boolean x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=7B10AC30B0320A4F95A3763001E1DBF6/Field/=HEADER/@KeyIndexDefined">False</s:Boolean> | ||
<s:Int64 x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=7B10AC30B0320A4F95A3763001E1DBF6/Field/=NAMESPACE/Order/@EntryValue">1</s:Int64> | ||
<s:String x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=7B10AC30B0320A4F95A3763001E1DBF6/Text/@EntryValue">/* Copyright 2010-present MongoDB Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
namespace $NAMESPACE$ | ||
{ | ||
public enum $ENUM$ {$END$} | ||
}</s:String> | ||
<s:Boolean x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=9BB83ED0FF792E47BAAB217C25589C77/Field/=HEADER/@KeyIndexDefined">False</s:Boolean> | ||
<s:Int64 x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=9BB83ED0FF792E47BAAB217C25589C77/Field/=NAMESPACE/Order/@EntryValue">1</s:Int64> | ||
<s:Int64 x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=9BB83ED0FF792E47BAAB217C25589C77/Field/=STRUCT/Order/@EntryValue">0</s:Int64> | ||
<s:String x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=9BB83ED0FF792E47BAAB217C25589C77/Text/@EntryValue">/* Copyright 2010-present MongoDB Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
namespace $NAMESPACE$ | ||
{ | ||
public struct $STRUCT$ {$END$} | ||
}</s:String> | ||
|
||
<s:Boolean x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=D90BFD2FB7CCB641BC2598FAB9C52289/@KeyIndexDefined">True</s:Boolean> | ||
<s:Boolean x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=D90BFD2FB7CCB641BC2598FAB9C52289/Applicability/=Live/@EntryIndexedValue">True</s:Boolean> | ||
<s:String x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=D90BFD2FB7CCB641BC2598FAB9C52289/Description/@EntryValue">Equals for non-polymorpic class</s:String> | ||
<s:Boolean x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=D90BFD2FB7CCB641BC2598FAB9C52289/Field/=type_005Fname/@KeyIndexDefined">True</s:Boolean> | ||
<s:String x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=D90BFD2FB7CCB641BC2598FAB9C52289/Field/=type_005Fname/Expression/@EntryValue">typeName()</s:String> | ||
<s:Int64 x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=D90BFD2FB7CCB641BC2598FAB9C52289/Field/=type_005Fname/InitialRange/@EntryValue">-1</s:Int64> | ||
<s:Int64 x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=D90BFD2FB7CCB641BC2598FAB9C52289/Field/=type_005Fname/Order/@EntryValue">0</s:Int64> | ||
<s:Boolean x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=D90BFD2FB7CCB641BC2598FAB9C52289/Scope/=B68999B9D6B43E47A02B22C12A54C3CC/@KeyIndexDefined">True</s:Boolean> | ||
<s:String x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=D90BFD2FB7CCB641BC2598FAB9C52289/Scope/=B68999B9D6B43E47A02B22C12A54C3CC/CustomProperties/=minimumLanguageVersion/@EntryIndexedValue">2.0</s:String> | ||
<s:String x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=D90BFD2FB7CCB641BC2598FAB9C52289/Scope/=B68999B9D6B43E47A02B22C12A54C3CC/Type/@EntryValue">InCSharpTypeMember</s:String> | ||
<s:String x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=D90BFD2FB7CCB641BC2598FAB9C52289/Shortcut/@EntryValue">eq</s:String> | ||
<s:Boolean x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=D90BFD2FB7CCB641BC2598FAB9C52289/ShortenQualifiedReferences/@EntryValue">True</s:Boolean> | ||
<s:String x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=D90BFD2FB7CCB641BC2598FAB9C52289/Text/@EntryValue"> public override bool Equals(object obj) => | ||
Equals(obj as $type_name$); | ||
|
||
public bool Equals($type_name$ other) | ||
{ | ||
if (object.ReferenceEquals(other, null)) { return false; } | ||
if (object.ReferenceEquals(this, other)) { return true; } | ||
|
||
// compare members here | ||
return $END$; | ||
}</s:String> | ||
<s:Boolean x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=E088F73D748623478354C00CB41593B9/@KeyIndexDefined">True</s:Boolean> | ||
<s:String x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=E088F73D748623478354C00CB41593B9/Text/@EntryValue"> public override bool Equals(object obj) => | ||
obj is $type_name$ other && Equals(other); | ||
|
||
public bool Equals($type_name$ other) | ||
{ | ||
// compare members here | ||
return $END$; | ||
}</s:String> | ||
<s:Boolean x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=E088F73D748623478354C00CB41593B9/ShortenQualifiedReferences/@EntryValue">True</s:Boolean> | ||
<s:Boolean x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=E088F73D748623478354C00CB41593B9/Applicability/=Live/@EntryIndexedValue">True</s:Boolean> | ||
|
||
|
||
|
||
<s:Boolean x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=E088F73D748623478354C00CB41593B9/Scope/=B68999B9D6B43E47A02B22C12A54C3CC/@KeyIndexDefined">True</s:Boolean> | ||
<s:String x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=E088F73D748623478354C00CB41593B9/Scope/=B68999B9D6B43E47A02B22C12A54C3CC/Type/@EntryValue">InCSharpTypeMember</s:String> | ||
<s:String x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=E088F73D748623478354C00CB41593B9/Scope/=B68999B9D6B43E47A02B22C12A54C3CC/CustomProperties/=minimumLanguageVersion/@EntryIndexedValue">2.0</s:String> | ||
<s:String x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=E088F73D748623478354C00CB41593B9/Shortcut/@EntryValue">eq</s:String> | ||
<s:String x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=E088F73D748623478354C00CB41593B9/Description/@EntryValue">Equals for struct</s:String> | ||
<s:Boolean x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=E088F73D748623478354C00CB41593B9/Field/=type_005Fname/@KeyIndexDefined">True</s:Boolean> | ||
<s:Int64 x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=E088F73D748623478354C00CB41593B9/Field/=type_005Fname/Order/@EntryValue">0</s:Int64> | ||
<s:String x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=E088F73D748623478354C00CB41593B9/Field/=type_005Fname/Expression/@EntryValue">typeName()</s:String> | ||
<s:Int64 x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=E088F73D748623478354C00CB41593B9/Field/=type_005Fname/InitialRange/@EntryValue">-1</s:Int64></wpf:ResourceDictionary> |