Ver código fonte

Rename generated files.

Bart De Smet 5 anos atrás
pai
commit
41b7e4e690

+ 1 - 1
Rx.NET/Source/src/System.Reactive/Linq/IQueryLanguage.Generated.cs → Rx.NET/Source/src/System.Reactive/Linq/IQueryLanguage.NAry.cs

@@ -8,7 +8,7 @@ namespace System.Reactive.Linq
     {
         /* The following code is generated by a T4 template. */
 
-        #region CombineLatest and Zip auto-generated code (10/01/2020 16:25:46)
+        #region CombineLatest and Zip auto-generated code (10/02/2020 11:15:29)
 
         IObservable<TResult> CombineLatest<T1, T2, TResult>(IObservable<T1> source1, IObservable<T2> source2, Func<T1, T2, TResult> resultSelector);
         IObservable<TResult> CombineLatest<T1, T2, T3, TResult>(IObservable<T1> source1, IObservable<T2> source2, IObservable<T3> source3, Func<T1, T2, T3, TResult> resultSelector);

+ 1 - 1
Rx.NET/Source/src/System.Reactive/Linq/IQueryLanguage.tt → Rx.NET/Source/src/System.Reactive/Linq/IQueryLanguage.NAry.tt

@@ -7,7 +7,7 @@
 <#@ import namespace="System.Linq" #>
 <#@ import namespace="System.Text" #>
 <#@ import namespace="System.Collections.Generic" #>
-<#@ output extension=".Generated.cs" #>
+<#@ output extension=".cs" #>
 namespace System.Reactive.Linq
 {
     partial interface IQueryLanguage

+ 1 - 1
Rx.NET/Source/src/System.Reactive/Linq/Observable.Multiple.CombineLatest.Generated.cs → Rx.NET/Source/src/System.Reactive/Linq/Observable.Multiple.CombineLatest.cs

@@ -8,7 +8,7 @@ namespace System.Reactive.Linq
     {
         /* The following code is generated by a T4 template. */
 
-        #region CombineLatest auto-generated code (10/01/2020 16:33:15)
+        #region CombineLatest auto-generated code (10/02/2020 11:11:50)
 
         /// <summary>
         /// Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element.

+ 1 - 1
Rx.NET/Source/src/System.Reactive/Linq/Observable.Multiple.CombineLatest.tt

@@ -7,7 +7,7 @@
 <#@ import namespace="System.Linq" #>
 <#@ import namespace="System.Text" #>
 <#@ import namespace="System.Collections.Generic" #>
-<#@ output extension=".Generated.cs" #>
+<#@ output extension=".cs" #>
 namespace System.Reactive.Linq
 {
     public static partial class Observable

+ 1 - 1
Rx.NET/Source/src/System.Reactive/Linq/Observable.Multiple.Zip.Generated.cs → Rx.NET/Source/src/System.Reactive/Linq/Observable.Multiple.Zip.cs

@@ -8,7 +8,7 @@ namespace System.Reactive.Linq
     {
         /* The following code is generated by a T4 template. */
 
-        #region Zip auto-generated code (10/01/2020 16:33:19)
+        #region Zip auto-generated code (10/02/2020 11:11:42)
 
         /// <summary>
         /// Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index.

+ 1 - 1
Rx.NET/Source/src/System.Reactive/Linq/Observable.Multiple.Zip.tt

@@ -7,7 +7,7 @@
 <#@ import namespace="System.Linq" #>
 <#@ import namespace="System.Text" #>
 <#@ import namespace="System.Collections.Generic" #>
-<#@ output extension=".Generated.cs" #>
+<#@ output extension=".cs" #>
 namespace System.Reactive.Linq
 {
     public static partial class Observable

+ 1 - 1
Rx.NET/Source/src/System.Reactive/Linq/Observable/CombineLatest.Generated.cs → Rx.NET/Source/src/System.Reactive/Linq/Observable/CombineLatest.NAry.cs

@@ -12,7 +12,7 @@ namespace System.Reactive.Linq.ObservableImpl
 
     /* The following code is generated by a T4 template. */
 
-    #region CombineLatest auto-generated code (21.06.2018 10:59:51)
+    #region CombineLatest auto-generated code (10/2/2020 11:11:08 AM)
 
     internal sealed class CombineLatest<T1, T2, T3, TResult> : Producer<TResult, CombineLatest<T1, T2, T3, TResult>._>
     {

+ 0 - 0
Rx.NET/Source/src/System.Reactive/Linq/Observable/CombineLatest.Generated.tt → Rx.NET/Source/src/System.Reactive/Linq/Observable/CombineLatest.NAry.tt


+ 1 - 1
Rx.NET/Source/src/System.Reactive/Linq/Observable/Zip.Generated.cs → Rx.NET/Source/src/System.Reactive/Linq/Observable/Zip.NAry.cs

@@ -12,7 +12,7 @@ namespace System.Reactive.Linq.ObservableImpl
 
     /* The following code is generated by a T4 template. */
 
-    #region Zip auto-generated code (20.06.2018 18:58:07)
+    #region Zip auto-generated code (10/2/2020 11:11:27 AM)
 
     internal sealed class Zip<T1, T2, T3, TResult> : Producer<TResult, Zip<T1, T2, T3, TResult>._>
     {

+ 0 - 0
Rx.NET/Source/src/System.Reactive/Linq/Observable/Zip.Generated.tt → Rx.NET/Source/src/System.Reactive/Linq/Observable/Zip.NAry.tt


+ 1 - 1
Rx.NET/Source/src/System.Reactive/Linq/QueryLanguage.Multiple.CombineLatest.Generated.cs → Rx.NET/Source/src/System.Reactive/Linq/QueryLanguage.Multiple.CombineLatest.cs

@@ -10,7 +10,7 @@ namespace System.Reactive.Linq
     {
         /* The following code is generated by a T4 template. */
 
-        #region CombineLatest auto-generated code (10/01/2020 16:39:47)
+        #region CombineLatest auto-generated code (10/02/2020 11:12:00)
 
         public virtual IObservable<TResult> CombineLatest<TSource1, TSource2, TSource3, TResult>(IObservable<TSource1> source1, IObservable<TSource2> source2, IObservable<TSource3> source3, Func<TSource1, TSource2, TSource3, TResult> resultSelector)
         {

+ 1 - 1
Rx.NET/Source/src/System.Reactive/Linq/QueryLanguage.Multiple.CombineLatest.tt

@@ -7,7 +7,7 @@
 <#@ import namespace="System.Linq" #>
 <#@ import namespace="System.Text" #>
 <#@ import namespace="System.Collections.Generic" #>
-<#@ output extension=".Generated.cs" #>
+<#@ output extension=".cs" #>
 namespace System.Reactive.Linq
 {
     using ObservableImpl;

+ 1 - 1
Rx.NET/Source/src/System.Reactive/Linq/QueryLanguage.Multiple.Zip.Generated.cs → Rx.NET/Source/src/System.Reactive/Linq/QueryLanguage.Multiple.Zip.cs

@@ -10,7 +10,7 @@ namespace System.Reactive.Linq
     {
         /* The following code is generated by a T4 template. */
 
-        #region Zip auto-generated code (10/01/2020 16:39:53)
+        #region Zip auto-generated code (10/02/2020 11:12:08)
 
         public virtual IObservable<TResult> Zip<TSource1, TSource2, TSource3, TResult>(IObservable<TSource1> source1, IObservable<TSource2> source2, IObservable<TSource3> source3, Func<TSource1, TSource2, TSource3, TResult> resultSelector)
         {

+ 1 - 1
Rx.NET/Source/src/System.Reactive/Linq/QueryLanguage.Multiple.Zip.tt

@@ -7,7 +7,7 @@
 <#@ import namespace="System.Linq" #>
 <#@ import namespace="System.Text" #>
 <#@ import namespace="System.Collections.Generic" #>
-<#@ output extension=".Generated.cs" #>
+<#@ output extension=".cs" #>
 namespace System.Reactive.Linq
 {
     using ObservableImpl;

+ 20 - 20
Rx.NET/Source/src/System.Reactive/System.Reactive.csproj

@@ -66,10 +66,10 @@
 
   <!-- Designer support -->
   <ItemGroup>
-    <Compile Update="Linq\IQueryLanguage.Generated.cs">
+    <Compile Update="Linq\IQueryLanguage.NAry.cs">
       <DesignTime>True</DesignTime>
       <AutoGen>True</AutoGen>
-      <DependentUpon>IQueryLanguage.tt</DependentUpon>
+      <DependentUpon>IQueryLanguage.NAry.tt</DependentUpon>
     </Compile>
     <Compile Update="Joins\Pattern.Generated.cs">
       <DesignTime>True</DesignTime>
@@ -81,40 +81,40 @@
       <AutoGen>True</AutoGen>
       <DependentUpon>QueryablePattern.tt</DependentUpon>
     </Compile>
-    <Compile Update="Linq\Observable\CombineLatest.Generated.cs">
+    <Compile Update="Linq\Observable\CombineLatest.NAry.cs">
       <DesignTime>True</DesignTime>
       <AutoGen>True</AutoGen>
-      <DependentUpon>CombineLatest.Generated.tt</DependentUpon>
+      <DependentUpon>CombineLatest.NAry.tt</DependentUpon>
     </Compile>
-    <Compile Update="Linq\Observable\Zip.Generated.cs">
+    <Compile Update="Linq\Observable\Zip.NAry.cs">
       <DesignTime>True</DesignTime>
       <AutoGen>True</AutoGen>
-      <DependentUpon>Zip.Generated.tt</DependentUpon>
+      <DependentUpon>Zip.NAry.tt</DependentUpon>
     </Compile>
-    <Compile Update="Linq\Observable.Multiple.CombineLatest.Generated.cs">
+    <Compile Update="Linq\Observable.Multiple.CombineLatest.cs">
       <DesignTime>True</DesignTime>
       <AutoGen>True</AutoGen>
       <DependentUpon>Observable.Multiple.CombineLatest.tt</DependentUpon>
     </Compile>
-    <Compile Update="Linq\Observable.Multiple.Zip.Generated.cs">
+    <Compile Update="Linq\Observable.Multiple.Zip.cs">
       <DesignTime>True</DesignTime>
       <AutoGen>True</AutoGen>
       <DependentUpon>Observable.Multiple.Zip.tt</DependentUpon>
     </Compile>
-    <Compile Update="Linq\QueryLanguage.Multiple.CombineLatest.Generated.cs">
+    <Compile Update="Linq\QueryLanguage.Multiple.CombineLatest.cs">
       <DesignTime>True</DesignTime>
       <AutoGen>True</AutoGen>
       <DependentUpon>QueryLanguage.Multiple.CombineLatest.tt</DependentUpon>
     </Compile>
-    <Compile Update="Linq\QueryLanguage.Multiple.Zip.Generated.cs">
+    <Compile Update="Linq\QueryLanguage.Multiple.Zip.cs">
       <DesignTime>True</DesignTime>
       <AutoGen>True</AutoGen>
       <DependentUpon>QueryLanguage.Multiple.Zip.tt</DependentUpon>
     </Compile>
 
-    <None Update="Linq\IQueryLanguage.tt">
+    <None Update="Linq\IQueryLanguage.NAry.tt">
       <Generator>TextTemplatingFileGenerator</Generator>
-      <LastGenOutput>IQueryLanguage.Generated.cs</LastGenOutput>
+      <LastGenOutput>IQueryLanguage.NAry.cs</LastGenOutput>
     </None>
     <None Update="Joins\Pattern.tt">
       <Generator>TextTemplatingFileGenerator</Generator>
@@ -124,28 +124,28 @@
       <Generator>TextTemplatingFileGenerator</Generator>
       <LastGenOutput>QueryablePattern.Generated.cs</LastGenOutput>
     </None>
-    <None Update="Linq\Observable\CombineLatest.Generated.tt">
+    <None Update="Linq\Observable\CombineLatest.NAry.tt">
       <Generator>TextTemplatingFileGenerator</Generator>
-      <LastGenOutput>CombineLatest.Generated.cs</LastGenOutput>
+      <LastGenOutput>CombineLatest.NAry.cs</LastGenOutput>
     </None>
-    <None Update="Linq\Observable\Zip.Generated.tt">
+    <None Update="Linq\Observable\Zip.NAry.tt">
       <Generator>TextTemplatingFileGenerator</Generator>
-      <LastGenOutput>Zip.Generated.cs</LastGenOutput>
+      <LastGenOutput>Zip.NAry.cs</LastGenOutput>
     </None>
     <None Update="Linq\Observable.Multiple.CombineLatest.tt">
       <Generator>TextTemplatingFileGenerator</Generator>
-      <LastGenOutput>Observable.Multiple.CombineLatest.Generated.cs</LastGenOutput>
+      <LastGenOutput>Observable.Multiple.CombineLatest.cs</LastGenOutput>
     </None>
     <None Update="Linq\Observable.Multiple.Zip.tt">
       <Generator>TextTemplatingFileGenerator</Generator>
-      <LastGenOutput>Observable.Multiple.Zip.Generated.cs</LastGenOutput>
+      <LastGenOutput>Observable.Multiple.Zip.cs</LastGenOutput>
     </None>
     <None Update="Linq\QueryLanguage.Multiple.CombineLatest.tt">
       <Generator>TextTemplatingFileGenerator</Generator>
-      <LastGenOutput>QueryLanguage.Multiple.CombineLatest.Generated.cs</LastGenOutput>
+      <LastGenOutput>QueryLanguage.Multiple.CombineLatest.cs</LastGenOutput>
     </None>
     <None Update="Linq\QueryLanguage.Multiple.Zip.tt">
-      <LastGenOutput>QueryLanguage.Multiple.Zip.Generated.cs</LastGenOutput>
+      <LastGenOutput>QueryLanguage.Multiple.Zip.cs</LastGenOutput>
       <Generator>TextTemplatingFileGenerator</Generator>
     </None>
   </ItemGroup>