Skip to content

Commit 00c004e

Browse files
committed
(GH-103) Removed usage of Fody
- This causes problems when trying to run GRM on any system other than Windows
1 parent 32675cc commit 00c004e

File tree

6 files changed

+10
-16
lines changed

6 files changed

+10
-16
lines changed

.DS_Store

6 KB
Binary file not shown.

Documentation/Legal/CREDITS.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ GitReleaseManager uses the following awesome frameworks (in no particular order)
2222

2323
* [Octokit.net](https://github.com/octokit/octokit.net)
2424
* [YamlDotNet](http://aaubry.net/pages/yamldotnet.html)
25-
* [Costura](https://github.com/Fody/Costura)
2625

2726
GitReleaseManager is built, with the following fantastic frameworks and services (in no particular order):
2827

Source/.DS_Store

6 KB
Binary file not shown.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Weavers>
33
<Costura/>
4+
<Costura/>
5+
<Costura/>
46

57
</Weavers>

Source/GitReleaseManager.Cli/GitReleaseManager.Cli.csproj

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -120,9 +120,6 @@
120120
<Install>false</Install>
121121
</BootstrapperPackage>
122122
</ItemGroup>
123-
<ItemGroup>
124-
<Content Include="FodyWeavers.xml" />
125-
</ItemGroup>
126123
<ItemGroup>
127124
<ProjectReference Include="..\GitReleaseManager\GitReleaseManager.Core.csproj">
128125
<Project>{b02a026e-ca3a-48f4-bba9-eb337b0a2035}</Project>
@@ -136,13 +133,11 @@
136133
</PropertyGroup>
137134
<Error Condition="!Exists('..\packages\StyleCop.MSBuild.4.7.49.1\build\StyleCop.MSBuild.Targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\StyleCop.MSBuild.4.7.49.1\build\StyleCop.MSBuild.Targets'))" />
138135
<Error Condition="!Exists('..\packages\StyleCop.Error.MSBuild.1.0.0\build\StyleCop.Error.MSBuild.Targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\StyleCop.Error.MSBuild.1.0.0\build\StyleCop.Error.MSBuild.Targets'))" />
139-
<Error Condition="!Exists('..\packages\Fody.1.29.4\build\dotnet\Fody.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Fody.1.29.4\build\dotnet\Fody.targets'))" />
140136
<Error Condition="!Exists('..\packages\gep13.ApplicationRunner.0.1.2\build\gep13.ApplicationRunner.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\gep13.ApplicationRunner.0.1.2\build\gep13.ApplicationRunner.targets'))" />
141137
</Target>
142138
<Import Project="..\..\BuildScripts\CodeAnalysis.props" Condition="Exists('..\..\BuildScripts\CodeAnalysis.props')" />
143139
<Import Project="..\..\BuildScripts\StyleCop.props" Condition="Exists('..\..\BuildScripts\StyleCop.props')" />
144140
<Import Project="..\packages\StyleCop.MSBuild.4.7.49.1\build\StyleCop.MSBuild.Targets" Condition="Exists('..\packages\StyleCop.MSBuild.4.7.49.1\build\StyleCop.MSBuild.Targets')" />
145141
<Import Project="..\packages\StyleCop.Error.MSBuild.1.0.0\build\StyleCop.Error.MSBuild.Targets" Condition="Exists('..\packages\StyleCop.Error.MSBuild.1.0.0\build\StyleCop.Error.MSBuild.Targets')" />
146-
<Import Project="..\packages\Fody.1.29.4\build\dotnet\Fody.targets" Condition="Exists('..\packages\Fody.1.29.4\build\dotnet\Fody.targets')" />
147142
<Import Project="..\packages\gep13.ApplicationRunner.0.1.2\build\gep13.ApplicationRunner.targets" Condition="Exists('..\packages\gep13.ApplicationRunner.0.1.2\build\gep13.ApplicationRunner.targets')" />
148143
</Project>
Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<packages>
3-
<package id="BuildTools.FxCop" version="1.0.1" targetFramework="net45" />
4-
<package id="CommandLineParser" version="2.0.275-beta" targetFramework="net451" />
5-
<package id="Costura.Fody" version="1.3.3.0" targetFramework="net451" developmentDependency="true" />
6-
<package id="Fody" version="1.29.4" targetFramework="net451" developmentDependency="true" />
7-
<package id="gep13.ApplicationRunner" version="0.1.2" targetFramework="net451" />
8-
<package id="Octokit" version="0.17.0" targetFramework="net451" />
9-
<package id="StyleCop.Error.MSBuild" version="1.0.0" targetFramework="net45" />
10-
<package id="StyleCop.MSBuild" version="4.7.49.1" targetFramework="net45" developmentDependency="true" />
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<packages>
3+
<package id="BuildTools.FxCop" version="1.0.1" targetFramework="net45" />
4+
<package id="CommandLineParser" version="2.0.275-beta" targetFramework="net451" />
5+
<package id="gep13.ApplicationRunner" version="0.1.2" targetFramework="net451" />
6+
<package id="Octokit" version="0.17.0" targetFramework="net451" />
7+
<package id="StyleCop.Error.MSBuild" version="1.0.0" targetFramework="net45" />
8+
<package id="StyleCop.MSBuild" version="4.7.49.1" targetFramework="net45" developmentDependency="true" />
119
</packages>

0 commit comments

Comments
 (0)