Skip to content

Commit 686554b

Browse files
fix: pr comment
1 parent 8d1ae5c commit 686554b

File tree

10 files changed

+4
-30
lines changed

10 files changed

+4
-30
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Prefix your items with `(Template)` if the change is about the template and not
1212
- Set MtouchUseLlvm to false for iOS release build to fix build time issue.
1313
- Changed the way that iOS app icons are added to the project.
1414
- Updated external dependencies packages versions.
15+
- Added [Bindable(true)] to all properties in the presentation layer that are used in bindings to remove runtime errors.
1516

1617
## 3.11.X
1718
- Added API Client tests project.

Directory.Build.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<Project>
22
<ItemGroup>
3-
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.507">
3+
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.556">
44
<PrivateAssets>all</PrivateAssets>
55
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
66
</PackageReference>
7-
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="10.0.101">
7+
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="10.0.102">
88
<PrivateAssets>all</PrivateAssets>
99
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
1010
</PackageReference>

build/steps-build-ios.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ steps:
3737
- download: current
3838
condition: eq('GeneratedApp', '${{ parameters.solutionName }}')
3939
artifact: GeneratedApp
40-
#-endif
40+
#-endif
4141

4242
- template: templates/gitversion.yml
4343

src/app/ApplicationTemplate.Mobile/ApplicationTemplate.Mobile.csproj

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,6 @@
4848
<ProjectReference Include="..\ApplicationTemplate.Business\ApplicationTemplate.Business.csproj" />
4949
<ProjectReference Include="..\ApplicationTemplate.Presentation\ApplicationTemplate.Presentation.csproj" />
5050
</ItemGroup>
51-
<ItemGroup>
52-
<PackageReference Update="StyleCop.Analyzers" Version="1.2.0-beta.556" />
53-
</ItemGroup>
5451
<Choose>
5552
<When Condition="'$(TargetFramework)'=='net10.0-android36.0'">
5653
<PropertyGroup>

src/app/ApplicationTemplate.Presentation/ApplicationTemplate.Presentation.csproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,4 @@
4040
<ItemGroup>
4141
<ProjectReference Include="..\ApplicationTemplate.Business\ApplicationTemplate.Business.csproj" />
4242
</ItemGroup>
43-
44-
<ItemGroup>
45-
<PackageReference Update="Microsoft.CodeAnalysis.NetAnalyzers" Version="10.0.102" />
46-
</ItemGroup>
4743
</Project>

src/app/ApplicationTemplate.Tests.Api/ApplicationTemplate.Tests.Api.csproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,4 @@
2424
<ItemGroup>
2525
<ProjectReference Include="..\ApplicationTemplate.Tests\ApplicationTemplate.Tests.csproj" />
2626
</ItemGroup>
27-
28-
<ItemGroup>
29-
<PackageReference Update="Microsoft.CodeAnalysis.NetAnalyzers" Version="10.0.102" />
30-
</ItemGroup>
3127
</Project>

src/app/ApplicationTemplate.Tests.Functional/ApplicationTemplate.Tests.Functional.csproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,4 @@
4141
<ItemGroup>
4242
<ProjectReference Include="..\ApplicationTemplate.Tests\ApplicationTemplate.Tests.csproj" />
4343
</ItemGroup>
44-
45-
<ItemGroup>
46-
<PackageReference Update="Microsoft.CodeAnalysis.NetAnalyzers" Version="10.0.102" />
47-
</ItemGroup>
4844
</Project>

src/app/ApplicationTemplate.Tests.Unit/ApplicationTemplate.Tests.Unit.csproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,4 @@
4040
<ItemGroup>
4141
<ProjectReference Include="..\ApplicationTemplate.Presentation\ApplicationTemplate.Presentation.csproj" />
4242
</ItemGroup>
43-
44-
<ItemGroup>
45-
<PackageReference Update="Microsoft.CodeAnalysis.NetAnalyzers" Version="10.0.102" />
46-
</ItemGroup>
4743
</Project>

src/app/ApplicationTemplate.Tests/ApplicationTemplate.Tests.csproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,4 @@
99
<ItemGroup>
1010
<ProjectReference Include="..\ApplicationTemplate.Presentation\ApplicationTemplate.Presentation.csproj" />
1111
</ItemGroup>
12-
13-
<ItemGroup>
14-
<PackageReference Update="Microsoft.CodeAnalysis.NetAnalyzers" Version="10.0.102" />
15-
</ItemGroup>
1612
</Project>

src/app/ApplicationTemplate.Windows/ApplicationTemplate.Windows.csproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,4 @@
119119
<!-- This prevents the xaml file links from being visible from this project. It removes unnecessary clutter. -->
120120
<Page Update="..\ApplicationTemplate.Shared.Views\**\*.xaml" Visible="false" />
121121
</ItemGroup>
122-
123-
<ItemGroup>
124-
<PackageReference Update="Microsoft.CodeAnalysis.NetAnalyzers" Version="10.0.102" />
125-
</ItemGroup>
126122
</Project>

0 commit comments

Comments
 (0)