Skip to content

Commit e07fc7b

Browse files
author
tom-englert
committed
Update dependencies; native net8.0 support.
1 parent 5ca3520 commit e07fc7b

5 files changed

Lines changed: 18 additions & 18 deletions

File tree

src/BasicSample/BasicSample.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="Fody" Version="6.6.4" PrivateAssets="all" />
11+
<PackageReference Include="Fody" Version="6.8.0" PrivateAssets="all" />
1212
<PackageReference Include="PropertyChanged.Fody" Version="4.1.0" PrivateAssets="all" />
1313
</ItemGroup>
1414

src/DataGridExtensions/DataGridExtensions.csproj

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
22
<PropertyGroup>
3-
<TargetFrameworks>net452;netcoreapp3.1;net5.0-windows</TargetFrameworks>
3+
<TargetFrameworks>net462;net6.0-windows7.0;net8.0-windows7.0</TargetFrameworks>
44
<UseWPF>true</UseWPF>
55
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
66
<GenerateDocumentationFile>true</GenerateDocumentationFile>
@@ -27,20 +27,20 @@ The current version supports the following features:
2727
<DebugSymbols>true</DebugSymbols>
2828
</PropertyGroup>
2929
<ItemGroup>
30-
<PackageReference Include="ILMerge.Fody" Version="1.22.0" PrivateAssets="All" />
31-
<PackageReference Include="Microsoft.Xaml.Behaviors.Wpf" Version="1.1.39" />
32-
<PackageReference Include="Fody" Version="6.6.0" PrivateAssets="all">
30+
<PackageReference Include="ILMerge.Fody" Version="1.24.0" PrivateAssets="All" />
31+
<PackageReference Include="Microsoft.Xaml.Behaviors.Wpf" Version="1.1.77" />
32+
<PackageReference Include="Fody" Version="6.8.0" PrivateAssets="all">
3333
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
3434
</PackageReference>
35-
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="all">
35+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="all">
3636
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
3737
</PackageReference>
38-
<PackageReference Include="Nullable.Extended.Analyzer" Version="1.10.4539">
38+
<PackageReference Include="Nullable.Extended.Analyzer" Version="1.14.6129">
3939
<PrivateAssets>all</PrivateAssets>
4040
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
4141
</PackageReference>
4242
<PackageReference Include="Throttle.Fody" Version="1.7.0" PrivateAssets="All" />
43-
<PackageReference Include="TomsToolbox.Wpf" Version="2.7.4" PrivateAssets="All" />
43+
<PackageReference Include="TomsToolbox.Wpf" Version="2.11.0" PrivateAssets="All" />
4444
</ItemGroup>
4545
<ItemGroup>
4646
<None Include="..\..\Icon.png" Link="Icon.png" Pack="true" PackagePath="\" />

src/DataGridExtensions/FodyWeavers.xsd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
</xs:element>
4646
<xs:element name="CompactMode" type="xs:boolean" minOccurs="0" maxOccurs="1">
4747
<xs:annotation>
48-
<xs:documentation>A switch to control whether to compact the target assembly by skipping properties, events and unused methods. Default is 'false'</xs:documentation>
48+
<xs:documentation>A switch to enable compacting of the target assembly by skipping properties, events and unused methods. Default is 'false'</xs:documentation>
4949
</xs:annotation>
5050
</xs:element>
5151
</xs:all>
@@ -86,7 +86,7 @@
8686
</xs:attribute>
8787
<xs:attribute name="CompactMode" type="xs:boolean">
8888
<xs:annotation>
89-
<xs:documentation>A switch to control whether to compact the target assembly by skipping properties, events and unused methods. Default is 'false'</xs:documentation>
89+
<xs:documentation>A switch to enable compacting of the target assembly by skipping properties, events and unused methods. Default is 'false'</xs:documentation>
9090
</xs:annotation>
9191
</xs:attribute>
9292
</xs:complexType>

src/DataGridExtensionsSample/DataGridExtensionsSample.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@
2020
<ProjectReference Include="..\DataGridExtensions\DataGridExtensions.csproj" />
2121
</ItemGroup>
2222
<ItemGroup>
23-
<PackageReference Include="Fody" Version="6.6.0">
23+
<PackageReference Include="Fody" Version="6.8.0">
2424
<PrivateAssets>all</PrivateAssets>
2525
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2626
</PackageReference>
27-
<PackageReference Include="PropertyChanged.Fody" Version="3.4.0" PrivateAssets="All" />
28-
<PackageReference Include="TomsToolbox.Composition.Ninject" Version="2.7.4" />
29-
<PackageReference Include="TomsToolbox.Wpf.Composition" Version="2.7.4" />
30-
<PackageReference Include="TomsToolbox.Wpf.Composition.AttributedModel" Version="2.7.4" />
31-
<PackageReference Include="TomsToolbox.Wpf.Styles" Version="2.7.4" />
27+
<PackageReference Include="PropertyChanged.Fody" Version="4.1.0" PrivateAssets="All" />
28+
<PackageReference Include="TomsToolbox.Composition.Ninject" Version="2.11.0" />
29+
<PackageReference Include="TomsToolbox.Wpf.Composition" Version="2.11.0" />
30+
<PackageReference Include="TomsToolbox.Wpf.Composition.AttributedModel" Version="2.11.0" />
31+
<PackageReference Include="TomsToolbox.Wpf.Styles" Version="2.10.0" />
3232
</ItemGroup>
3333
<ItemGroup>
3434
<Folder Include="Properties\" />

src/Documentation/Documentation.shfbproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,8 @@
137137
</ProjectReference>
138138
</ItemGroup>
139139
<ItemGroup>
140-
<PackageReference Include="EWSoftware.SHFB" Version="2019.9.15" />
141-
<PackageReference Include="EWSoftware.SHFB.NETFramework" Version="4.8.0" />
140+
<PackageReference Include="EWSoftware.SHFB" Version="2023.7.8" />
141+
<PackageReference Include="EWSoftware.SHFB.NETFramework" Version="4.8.0.2" />
142142
</ItemGroup>
143143
<!-- Import the SHFB build targets -->
144144
<Import Project="$(MSBuildToolsPath)\Microsoft.Common.targets" Condition="'$(MSBuildRestoreSessionId)' != ''" />

0 commit comments

Comments
 (0)