Skip to content

Commit 4fa7ffb

Browse files
committed
total rewrite+upgrade to .net8 + rebrand
1 parent 3a2d7d6 commit 4fa7ffb

26 files changed

+93
-168
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,4 +389,4 @@ FodyWeavers.xsd
389389

390390

391391
# Custom Entries
392-
!OverwolfInsiderPatcher.exe
392+
!OverwolfPatcher.exe

OverwolfInsiderPatcher/OverwolfPatcher.csproj

Lines changed: 0 additions & 124 deletions
This file was deleted.

OverwolfInsiderPatcher/Properties/AssemblyInfo.cs

Lines changed: 0 additions & 37 deletions
This file was deleted.
Binary file not shown.
Binary file not shown.

OverwolfInsiderPatcher/packages.config

Lines changed: 0 additions & 4 deletions
This file was deleted.

OverwolfPatcher.sln

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 17
44
VisualStudioVersion = 17.11.35303.130
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OverwolfPatcher", "OverwolfInsiderPatcher\OverwolfPatcher.csproj", "{53370A50-3DC8-45C9-A300-D396D8731DE8}"
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OverwolfPatcher", "OverwolfPatcher\OverwolfPatcher.csproj", "{53370A50-3DC8-45C9-A300-D396D8731DE8}"
77
EndProject
88
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{E49308C9-9D22-403D-8E47-1D17F043884B}"
99
ProjectSection(SolutionItems) = preProject
1010
.editorconfig = .editorconfig
11+
.gitignore = .gitignore
1112
EndProjectSection
1213
EndProject
1314
Global
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
33
<startup>
4-
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/>
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8.1"/>
55
</startup>
66
</configuration>
File renamed without changes.
Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
<PropertyGroup>
3+
<TargetFramework>net8.0</TargetFramework>
4+
<OutputType>Exe</OutputType>
5+
<RootNamespace>OverwolfPatcher</RootNamespace>
6+
<AssemblyName>OverwolfPatcher</AssemblyName>
7+
<PublishUrl>publish\</PublishUrl>
8+
<Install>true</Install>
9+
<InstallFrom>Disk</InstallFrom>
10+
<UpdateEnabled>false</UpdateEnabled>
11+
<UpdateMode>Foreground</UpdateMode>
12+
<UpdateInterval>7</UpdateInterval>
13+
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
14+
<UpdatePeriodically>false</UpdatePeriodically>
15+
<UpdateRequired>false</UpdateRequired>
16+
<MapFileExtensions>true</MapFileExtensions>
17+
<ApplicationRevision>0</ApplicationRevision>
18+
<ApplicationVersion>1.0.0.0</ApplicationVersion>
19+
<IsWebBootstrapper>false</IsWebBootstrapper>
20+
<UseApplicationTrust>false</UseApplicationTrust>
21+
<BootstrapperEnabled>true</BootstrapperEnabled>
22+
<GenerateAssemblyInfo>True</GenerateAssemblyInfo>
23+
</PropertyGroup>
24+
<PropertyGroup />
25+
<PropertyGroup>
26+
<StartupObject>OverwolfPatcher.Program</StartupObject>
27+
<ApplicationIcon>icon.ico</ApplicationIcon>
28+
<GenerateDocumentationFile>False</GenerateDocumentationFile>
29+
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
30+
<PublishTrimmed>True</PublishTrimmed>
31+
<Title>Overwolf Patcher</Title>
32+
<Authors>Decode, Bluscream</Authors>
33+
<Description>Patcher for Overwolf</Description>
34+
<Copyright>2021-2024</Copyright>
35+
<PackageProjectUrl>https://github.com/DecoderCoder/OverwolfInsiderPatcher</PackageProjectUrl>
36+
<PackageIcon>icon.ico</PackageIcon>
37+
<PackageReadmeFile>README.md</PackageReadmeFile>
38+
<RepositoryUrl>https://github.com/DecoderCoder/OverwolfInsiderPatcher</RepositoryUrl>
39+
<RepositoryType>git</RepositoryType>
40+
<NeutralLanguage>en-US</NeutralLanguage>
41+
<IncludeSymbols>True</IncludeSymbols>
42+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
43+
</PropertyGroup>
44+
<ItemGroup>
45+
<BootstrapperPackage Include=".NETFramework,Version=v4.8">
46+
<Visible>False</Visible>
47+
<ProductName>Microsoft .NET Framework 4.8 %28x86 and x64%29</ProductName>
48+
<Install>true</Install>
49+
</BootstrapperPackage>
50+
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
51+
<Visible>False</Visible>
52+
<ProductName>.NET Framework 3.5 SP1</ProductName>
53+
<Install>false</Install>
54+
</BootstrapperPackage>
55+
</ItemGroup>
56+
<ItemGroup>
57+
<Content Include="icon.ico" />
58+
</ItemGroup>
59+
<ItemGroup>
60+
<None Include="..\README.md">
61+
<Pack>True</Pack>
62+
<PackagePath>\</PackagePath>
63+
</None>
64+
</ItemGroup>
65+
<ItemGroup>
66+
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
67+
<PackageReference Include="Mono.Cecil" Version="0.11.5" />
68+
<PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />
69+
</ItemGroup>
70+
<ItemGroup>
71+
<None Update="icon.ico">
72+
<Pack>True</Pack>
73+
<PackagePath>\</PackagePath>
74+
</None>
75+
</ItemGroup>
76+
</Project>
File renamed without changes.
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
using System.Reflection;
2+
using System.Resources;
3+
using System.Runtime.InteropServices;
4+
[assembly: AssemblyTrademark("")]
5+
[assembly: AssemblyCulture("")]
6+
7+
// Setting ComVisible to false makes the types in this assembly not visible
8+
// to COM components. If you need to access a type in this assembly from
9+
// COM, set the ComVisible attribute to true on that type.
10+
[assembly: ComVisible(false)]
11+
12+
// The following GUID is for the ID of the typelib if this project is exposed to COM
13+
[assembly: Guid("53370a50-3dc8-45c9-a300-d396d8731de8")]
Binary file not shown.
Binary file not shown.
File renamed without changes.

0 commit comments

Comments
 (0)