Skip to content

Commit

Permalink
Features (#6)
Browse files Browse the repository at this point in the history
* Add Travis CI

* Update .travis.yml

* Target netstandard2.0

* Give up on travis for now

* Removed Fody and set version to 0.1.0

Removed Fody again because it seemed to break the final exe
  • Loading branch information
MrKev312 committed Feb 13, 2021
1 parent 6eadb6f commit f61a943
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 15 deletions.
2 changes: 1 addition & 1 deletion src/JunctionPoint/JunctionPoint.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>netstandard2.0</TargetFramework>
<Authors>LGM-AdrianHum</Authors>
<Company />
<PackageProjectUrl>https://gist.github.com/LGM-AdrianHum/260bc9ab3c4cd49bc8617a2abe84ca74</PackageProjectUrl>
Expand Down
4 changes: 0 additions & 4 deletions src/SaveRedirection/FodyWeavers.xml

This file was deleted.

15 changes: 6 additions & 9 deletions src/SaveRedirection/SaveRedirection.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,13 @@
<OutputType>WinExe</OutputType>
<TargetFramework>net5.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<ApplicationManifest>app.manifest</ApplicationManifest>
<ApplicationManifest>SaveRedirection.manifest</ApplicationManifest>
<SignAssembly>true</SignAssembly>
<Version>0.1.0</Version>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<Optimize>true</Optimize>
</PropertyGroup>

<ItemGroup>
Expand All @@ -16,14 +21,6 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Costura.Fody" Version="5.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Fody" Version="6.3.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="Ookii.Dialogs.Wpf" Version="3.1.0" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
<assemblyIdentity version="1.0.0.0" name="MyApplication.app"/>
<assemblyIdentity version="1.0.0.0" name="SaveRedirection.app"/>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
<security>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
Expand Down

0 comments on commit f61a943

Please sign in to comment.