@@ -18,7 +18,7 @@ public void GetFormular_EverythingFine_Expected()
1818 var serviceProvider = services . BuildServiceProvider ( ) ;
1919 var synchronizationContext = new WindowsFormsSynchronizationContextProvider
2020 {
21- Context = SynchronizationContext . Current !
21+ Context = SynchronizationContext . Current ! ,
2222 } ;
2323 using var formularProvider = new FormularProvider ( serviceProvider , synchronizationContext ) ;
2424
@@ -37,7 +37,7 @@ public void GetFormular_InvalidForm_ThrowsInvalidOperationException()
3737 var serviceProvider = services . BuildServiceProvider ( ) ;
3838 var synchronizationContext = new WindowsFormsSynchronizationContextProvider
3939 {
40- Context = SynchronizationContext . Current !
40+ Context = SynchronizationContext . Current ! ,
4141 } ;
4242 using var formularProvider = new FormularProvider ( serviceProvider , synchronizationContext ) ;
4343
@@ -55,7 +55,7 @@ public async Task GetFormularAsync_EverythingFine_Expected()
5555 var serviceProvider = services . BuildServiceProvider ( ) ;
5656 var synchronizationContext = new WindowsFormsSynchronizationContextProvider
5757 {
58- Context = SynchronizationContext . Current !
58+ Context = SynchronizationContext . Current ! ,
5959 } ;
6060 using var formularProvider = new FormularProvider ( serviceProvider , synchronizationContext ) ;
6161
@@ -74,7 +74,7 @@ public async Task GetFormularAsync_InvalidForm_ThrowsInvalidOperationException()
7474 var serviceProvider = services . BuildServiceProvider ( ) ;
7575 var synchronizationContext = new WindowsFormsSynchronizationContextProvider
7676 {
77- Context = SynchronizationContext . Current !
77+ Context = SynchronizationContext . Current ! ,
7878 } ;
7979 using var formularProvider = new FormularProvider ( serviceProvider , synchronizationContext ) ;
8080
@@ -92,7 +92,7 @@ public void GetScopedForm_EverythingFine_Expected()
9292 var serviceProvider = services . BuildServiceProvider ( ) ;
9393 var synchronizationContext = new WindowsFormsSynchronizationContextProvider
9494 {
95- Context = SynchronizationContext . Current !
95+ Context = SynchronizationContext . Current ! ,
9696 } ;
9797 using var formularProvider = new FormularProvider ( serviceProvider , synchronizationContext ) ;
9898
@@ -111,7 +111,7 @@ public void GetScopedForm_InvalidForm_ThrowsInvalidOperationException()
111111 var serviceProvider = services . BuildServiceProvider ( ) ;
112112 var synchronizationContext = new WindowsFormsSynchronizationContextProvider
113113 {
114- Context = SynchronizationContext . Current !
114+ Context = SynchronizationContext . Current ! ,
115115 } ;
116116 using var formularProvider = new FormularProvider ( serviceProvider , synchronizationContext ) ;
117117
@@ -129,7 +129,7 @@ public async Task GetScopedFormAsync_EverythingFine_Expected()
129129 var serviceProvider = services . BuildServiceProvider ( ) ;
130130 var synchronizationContext = new WindowsFormsSynchronizationContextProvider
131131 {
132- Context = SynchronizationContext . Current !
132+ Context = SynchronizationContext . Current ! ,
133133 } ;
134134 using var formularProvider = new FormularProvider ( serviceProvider , synchronizationContext ) ;
135135
@@ -148,7 +148,7 @@ public async Task GetScopedFormAsync_InvalidForm_ThrowsInvalidOperationException
148148 var serviceProvider = services . BuildServiceProvider ( ) ;
149149 var synchronizationContext = new WindowsFormsSynchronizationContextProvider
150150 {
151- Context = SynchronizationContext . Current !
151+ Context = SynchronizationContext . Current ! ,
152152 } ;
153153 using var formularProvider = new FormularProvider ( serviceProvider , synchronizationContext ) ;
154154
@@ -166,7 +166,7 @@ public void GetScopedForm_WithScope_EverythingFine_Expected()
166166 var serviceProvider = services . BuildServiceProvider ( ) ;
167167 var synchronizationContext = new WindowsFormsSynchronizationContextProvider
168168 {
169- Context = SynchronizationContext . Current !
169+ Context = SynchronizationContext . Current ! ,
170170 } ;
171171 using var formularProvider = new FormularProvider ( serviceProvider , synchronizationContext ) ;
172172 using var scope = serviceProvider . CreateScope ( ) ;
@@ -186,7 +186,7 @@ public void GetScopedForm_WithScope_InvalidForm_ThrowsInvalidOperationException(
186186 var serviceProvider = services . BuildServiceProvider ( ) ;
187187 var synchronizationContext = new WindowsFormsSynchronizationContextProvider
188188 {
189- Context = SynchronizationContext . Current !
189+ Context = SynchronizationContext . Current ! ,
190190 } ;
191191 using var formularProvider = new FormularProvider ( serviceProvider , synchronizationContext ) ;
192192 using var scope = serviceProvider . CreateScope ( ) ;
@@ -205,7 +205,7 @@ public async Task GetScopedFormAsync_WithScope_EverythingFine_Expected()
205205 var serviceProvider = services . BuildServiceProvider ( ) ;
206206 var synchronizationContext = new WindowsFormsSynchronizationContextProvider
207207 {
208- Context = SynchronizationContext . Current !
208+ Context = SynchronizationContext . Current ! ,
209209 } ;
210210 using var formularProvider = new FormularProvider ( serviceProvider , synchronizationContext ) ;
211211 using var scope = serviceProvider . CreateScope ( ) ;
@@ -225,7 +225,7 @@ public async Task GetScopedFormAsync_WithScope_InvalidForm_ThrowsInvalidOperatio
225225 var serviceProvider = services . BuildServiceProvider ( ) ;
226226 var synchronizationContext = new WindowsFormsSynchronizationContextProvider
227227 {
228- Context = SynchronizationContext . Current !
228+ Context = SynchronizationContext . Current ! ,
229229 } ;
230230 using var formularProvider = new FormularProvider ( serviceProvider , synchronizationContext ) ;
231231 using var scope = serviceProvider . CreateScope ( ) ;
@@ -246,7 +246,7 @@ public void GetMainFormular_EverythingFine_Expected()
246246 var serviceProvider = services . BuildServiceProvider ( ) ;
247247 var synchronizationContext = new WindowsFormsSynchronizationContextProvider
248248 {
249- Context = SynchronizationContext . Current !
249+ Context = SynchronizationContext . Current ! ,
250250 } ;
251251 using var formularProvider = new FormularProvider ( serviceProvider , synchronizationContext ) ;
252252
@@ -267,7 +267,7 @@ public void GetMainFormular_InvalidForm_ThrowsInvalidOperationException()
267267 var serviceProvider = services . BuildServiceProvider ( ) ;
268268 var synchronizationContext = new WindowsFormsSynchronizationContextProvider
269269 {
270- Context = SynchronizationContext . Current !
270+ Context = SynchronizationContext . Current ! ,
271271 } ;
272272 using var formularProvider = new FormularProvider ( serviceProvider , synchronizationContext ) ;
273273
@@ -285,7 +285,7 @@ public async Task GetMainFormularAsync_EverythingFine_Expected()
285285 var serviceProvider = services . BuildServiceProvider ( ) ;
286286 var synchronizationContext = new WindowsFormsSynchronizationContextProvider
287287 {
288- Context = SynchronizationContext . Current !
288+ Context = SynchronizationContext . Current ! ,
289289 } ;
290290 using var formularProvider = new FormularProvider ( serviceProvider , synchronizationContext ) ;
291291
@@ -306,7 +306,7 @@ public async Task GetMainFormularAsync_InvalidForm_ThrowsInvalidOperationExcepti
306306 var serviceProvider = services . BuildServiceProvider ( ) ;
307307 var synchronizationContext = new WindowsFormsSynchronizationContextProvider
308308 {
309- Context = SynchronizationContext . Current !
309+ Context = SynchronizationContext . Current ! ,
310310 } ;
311311 using var formularProvider = new FormularProvider ( serviceProvider , synchronizationContext ) ;
312312
0 commit comments