Skip to content

Commit d75d034

Browse files
committed
Fix T4
1 parent 17620fe commit d75d034

File tree

4 files changed

+52
-3
lines changed

4 files changed

+52
-3
lines changed

.editorconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ end_of_line = lf
4141
indent_size = 2
4242

4343
# Dotnet code style settings:
44-
[*.{cs,vb}]
44+
[*.cs]
4545
# Sort using and Import directives with System.* appearing first
4646
dotnet_sort_system_directives_first = true
4747
# Always use "this." and "Me." when applicable; let StyleCop Analyzers provide the warning and fix

Gu.Reactive.sln

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".sln", ".sln", "{E9C570CF-F
88
.editorconfig = .editorconfig
99
appveyor.yml = appveyor.yml
1010
azure-pipelines.yml = azure-pipelines.yml
11+
Gu.Reactive.sln.DotSettings = Gu.Reactive.sln.DotSettings
1112
Settings.XamlStyler = Settings.XamlStyler
1213
stylecop.json = stylecop.json
1314
EndProjectSection

Gu.Reactive.sln.DotSettings

-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010
<s:String x:Key="/Default/CodeInspection/Highlighting/InspectionSeverities/=ArrangeThisQualifier/@EntryIndexedValue">HINT</s:String>
1111
<s:String x:Key="/Default/CodeInspection/Highlighting/InspectionSeverities/=ClassNeverInstantiated_002EGlobal/@EntryIndexedValue">HINT</s:String>
1212

13-
<s:String x:Key="/Default/CodeStyle/CodeFormatting/CSharpCodeStyle/ThisQualifier/INSTANCE_MEMBERS_QUALIFY_DECLARED_IN/@EntryValue">0</s:String>
14-
<s:String x:Key="/Default/CodeStyle/CodeFormatting/CSharpCodeStyle/ThisQualifier/INSTANCE_MEMBERS_QUALIFY_MEMBERS/@EntryValue">Field, Property, Event, Method</s:String>
1513
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/ALIGN_MULTILINE_ARGUMENT/@EntryValue">True</s:Boolean>
1614
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/ALIGN_MULTILINE_CALLS_CHAIN/@EntryValue">True</s:Boolean>
1715
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/ALIGN_MULTILINE_PARAMETER/@EntryValue">True</s:Boolean>

Gu.Reactive/Gu.Reactive.csproj

+50
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,56 @@ FEATURE: AsFilteredView with observable factory.</PackageReleaseNotes>
4343
<DependentUpon>NotifyCollectionChangedExt.tt</DependentUpon>
4444
</Compile>
4545

46+
<None Update="Collections/ReadOnlyViews/MappingView.tt">
47+
<Generator>TextTemplatingFileGenerator</Generator>
48+
<LastGenOutput>MappingView.generated.cs</LastGenOutput>
49+
</None>
50+
<Compile Update="Collections/ReadOnlyViews/MappingView.generated.cs">
51+
<DesignTime>True</DesignTime>
52+
<AutoGen>True</AutoGen>
53+
<DependentUpon>MappingView.tt</DependentUpon>
54+
</Compile>
55+
56+
<None Update="Collections/ReadOnlyViews/MappingView{TSource,TResult}.tt">
57+
<Generator>TextTemplatingFileGenerator</Generator>
58+
<LastGenOutput>MappingView{TSource,TResult}.generated.cs</LastGenOutput>
59+
</None>
60+
<Compile Update="Collections/ReadOnlyViews/MappingView{TSource,TResult}.generated.cs">
61+
<DesignTime>True</DesignTime>
62+
<AutoGen>True</AutoGen>
63+
<DependentUpon>MappingView{TSource,TResult}.tt</DependentUpon>
64+
</Compile>
65+
66+
<None Update="Collections/ReadOnlyViews/ReadOnlyFilteredView.tt">
67+
<Generator>TextTemplatingFileGenerator</Generator>
68+
<LastGenOutput>ReadOnlyFilteredView.generated.cs</LastGenOutput>
69+
</None>
70+
<Compile Update="Collections/ReadOnlyViews/ReadOnlyFilteredView.generated.cs">
71+
<DesignTime>True</DesignTime>
72+
<AutoGen>True</AutoGen>
73+
<DependentUpon>ReadOnlyFilteredView.tt</DependentUpon>
74+
</Compile>
75+
76+
<None Update="Collections/ReadOnlyViews/ReadOnlyFilteredView{T}.tt">
77+
<Generator>TextTemplatingFileGenerator</Generator>
78+
<LastGenOutput>ReadOnlyFilteredView{T}.generated.cs</LastGenOutput>
79+
</None>
80+
<Compile Update="Collections/ReadOnlyViews/ReadOnlyFilteredView{T}.generated.cs">
81+
<DesignTime>True</DesignTime>
82+
<AutoGen>True</AutoGen>
83+
<DependentUpon>ReadOnlyFilteredView{T}.tt</DependentUpon>
84+
</Compile>
85+
86+
<None Update="Collections/ReadOnlyViews/ReadOnlyThrottledView.tt">
87+
<Generator>TextTemplatingFileGenerator</Generator>
88+
<LastGenOutput>ReadOnlyThrottledView.generated.cs</LastGenOutput>
89+
</None>
90+
<Compile Update="Collections/ReadOnlyViews/ReadOnlyThrottledView.generated.cs">
91+
<DesignTime>True</DesignTime>
92+
<AutoGen>True</AutoGen>
93+
<DependentUpon>ReadOnlyThrottledView.tt</DependentUpon>
94+
</Compile>
95+
4696
<None Update="Trackers/MaxTracker.tt">
4797
<Generator>TextTemplatingFileGenerator</Generator>
4898
<LastGenOutput>MaxTracker.generated.cs</LastGenOutput>

0 commit comments

Comments
 (0)