Skip to content

Commit

Permalink
fix link
Browse files Browse the repository at this point in the history
fixes #88
  • Loading branch information
SimonCropp committed Oct 30, 2019
1 parent 7214b36 commit 51ba0d2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions pages/addin-development.md
Expand Up @@ -52,8 +52,8 @@ The produced NuGet package will:
<PackageIconUrl>https://raw.githubusercontent.com/Fody/Home/master/BasicFodyAddin/package_icon.png</PackageIconUrl>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Fody" Version="6.0.0" PrivateAssets="none" />
<PackageReference Include="FodyPackaging" Version="6.0.0" PrivateAssets="All" />
<PackageReference Include="Fody" Version="6.0.2" PrivateAssets="none" />
<PackageReference Include="FodyPackaging" Version="6.0.2" PrivateAssets="All" />
</ItemGroup>
</Project>
```
Expand Down Expand Up @@ -91,7 +91,7 @@ This project contains the weaving code.
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="FodyHelpers" Version="6.0.0" />
<PackageReference Include="FodyHelpers" Version="6.0.2" />
</ItemGroup>
</Project>
```
Expand Down Expand Up @@ -458,7 +458,7 @@ By default `ExecuteTestRun` will perform a [PeVerify](https://docs.microsoft.com
<DisableFody>true</DisableFody>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="FodyHelpers" Version="6.0.0" />
<PackageReference Include="FodyHelpers" Version="6.0.2" />
<PackageReference Include="Xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.3.0" />
Expand Down
2 changes: 1 addition & 1 deletion pages/addins.md
Expand Up @@ -38,7 +38,7 @@ To change this file edit the source file and then run MarkdownSnippets.
* [PropertyChanged](https://github.com/Fody/PropertyChanged) Injects INotifyPropertyChanged code into properties.
* [PropertyChanging](https://github.com/Fody/PropertyChanging) Injects INotifyPropertyChanging code into properties.
* [Publicize](https://github.com/Fody/Publicize) Converts non-public members to public hidden members.
* [Realm](https://github.com/realm/realm-dotnet/tree/master/Weaver/RealmWeaver.Fody) Mobile database: a replacement for SQLite & ORMs.
* [Realm](https://github.com/realm/realm-dotnet) Mobile database: a replacement for SQLite & ORMs.
* [ReactiveUI.Fody](https://github.com/reactiveui/ReactiveUI) Generates [ReactiveUI](https://reactiveui.net/) `RaisePropertyChanged` notifications for properties and `OAPH`s.
* [Resourcer](https://github.com/Fody/Resourcer) Simplifies reading embedded resources from an Assembly.
* [SplashScreen](https://github.com/tom-englert/SplashScreen.Fody) Lets you design your WPF splash screen as a WPF Control instead of a static bitmap.
Expand Down
2 changes: 1 addition & 1 deletion pages/mdsource/addins.source.md
Expand Up @@ -31,7 +31,7 @@
* [PropertyChanged](https://github.com/Fody/PropertyChanged) Injects INotifyPropertyChanged code into properties.
* [PropertyChanging](https://github.com/Fody/PropertyChanging) Injects INotifyPropertyChanging code into properties.
* [Publicize](https://github.com/Fody/Publicize) Converts non-public members to public hidden members.
* [Realm](https://github.com/realm/realm-dotnet/tree/master/Weaver/RealmWeaver.Fody) Mobile database: a replacement for SQLite & ORMs.
* [Realm](https://github.com/realm/realm-dotnet) Mobile database: a replacement for SQLite & ORMs.
* [ReactiveUI.Fody](https://github.com/reactiveui/ReactiveUI) Generates [ReactiveUI](https://reactiveui.net/) `RaisePropertyChanged` notifications for properties and `OAPH`s.
* [Resourcer](https://github.com/Fody/Resourcer) Simplifies reading embedded resources from an Assembly.
* [SplashScreen](https://github.com/tom-englert/SplashScreen.Fody) Lets you design your WPF splash screen as a WPF Control instead of a static bitmap.
Expand Down

0 comments on commit 51ba0d2

Please sign in to comment.