-
Notifications
You must be signed in to change notification settings - Fork 159
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0306d56
commit ac00c1f
Showing
3 changed files
with
123 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<OutputType>Exe</OutputType> | ||
<RuntimeIdentifier>win-x64</RuntimeIdentifier> | ||
<PlatformTarget>x64</PlatformTarget> | ||
<RuntimeIdentifier>win-x64</RuntimeIdentifier> | ||
<PlatformTarget>x64</PlatformTarget> | ||
<PublishSingleFile>true</PublishSingleFile> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<StartupObject /> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<ApplicationIcon>r11.ico</ApplicationIcon> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<ApplicationManifest>app.manifest</ApplicationManifest> | ||
<AssemblyTitle>Rectify11 Installer</AssemblyTitle> | ||
<Description>Phase 2</Description> | ||
<Company>Rectify11</Company> | ||
<Product>Rectify11Installer.</Product> | ||
<Copyright>Copyright © 2024 The Rectify11 Team</Copyright> | ||
<AssemblyVersion>3.2.68.3</AssemblyVersion> | ||
<FileVersion>3.2.68.3</FileVersion> | ||
<NeutralLanguage>en</NeutralLanguage> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Compile Update="Properties\Resources.Designer.cs"> | ||
<AutoGen>True</AutoGen> | ||
<DesignTime>True</DesignTime> | ||
<DependentUpon>Resources.resx</DependentUpon> | ||
</Compile> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Content Include="r11.ico" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<EmbeddedResource Update="Properties\Resources.resx"> | ||
<Generator>ResXFileCodeGenerator</Generator> | ||
<LastGenOutput>Resources.Designer.cs</LastGenOutput> | ||
</EmbeddedResource> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" /> | ||
<PackageReference Include="Microsoft.VisualBasic" Version="10.3.0" /> | ||
</ItemGroup> | ||
|
||
<PropertyGroup> | ||
<PostBuildEvent></PostBuildEvent> | ||
</PropertyGroup> | ||
|
||
<Target Name="PostBuild" AfterTargets="PostBuildEvent"> | ||
<PropertyGroup> | ||
<PostBuildCommands>copy /Y "$(TargetDir)Rectify11.Phase2.dll" "$(SolutionDir)Rectify11Installer/Resources/Rectify11.Phase2.dll" && copy /Y "$(TargetDir)Rectify11.Phase2.exe" "$(SolutionDir)Rectify11Installer/Resources/Rectify11.Phase2.exe" && copy /Y "$(TargetDir)Rectify11.Phase2.runtimeconfig.json" "$(SolutionDir)Rectify11Installer/Resources/Rectify11.Phase2.runtimeconfig.json"</PostBuildCommands> | ||
</PropertyGroup> | ||
<Exec Command="$(PostBuildCommands)" /> | ||
</Target> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>net8.0-windows</TargetFramework> | ||
<OutputType>WinExe</OutputType> | ||
<MapFileExtensions>true</MapFileExtensions> | ||
<Version>3.2.68.3</Version> | ||
<LangVersion>latest</LangVersion> | ||
<PublishSingleFile>true</PublishSingleFile> | ||
<UseWindowsForms>true</UseWindowsForms> | ||
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets> | ||
<LangVersion>latest</LangVersion> | ||
<AllowUnsafeBlocks>True</AllowUnsafeBlocks> | ||
<RuntimeIdentifier>win-x64</RuntimeIdentifier> | ||
<PlatformTarget>x64</PlatformTarget> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<ApplicationIcon>r11.ico</ApplicationIcon> | ||
<ApplicationManifest>app.manifest</ApplicationManifest> | ||
<StartupObject>Rectify11Installer.Program</StartupObject> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\libmsstyle\libmsstyle.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Content Include="Core\rectify11.xml"> | ||
<SubType>Designer</SubType> | ||
</Content> | ||
<None Include="Resources\wsudo.exe" /> | ||
<None Include="Resources\ThemeDll-x64.dll" /> | ||
<None Include="Resources\ThemeDll-arm64.dll" /> | ||
<None Include="Resources\secureux-x64.exe" /> | ||
<None Include="Resources\secureux-arm64.exe" /> | ||
<None Include="Resources\Rectify11ControlCenter.exe" /> | ||
<Content Include="Resources\ResourceHacker.exe" /> | ||
<Content Include="r11.ico" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="KPreisser.UI.TaskDialog" Version="1.0.0" /> | ||
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" /> | ||
<PackageReference Include="Microsoft.VisualBasic" Version="10.4.0-preview.18571.3" /> | ||
<PackageReference Include="Resource.Embedder"> | ||
<Version>2.2.0</Version> | ||
</PackageReference> | ||
<PackageReference Include="System.Management" Version="9.0.0-preview.4.24266.19" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Update="Properties\Resources.Designer.cs"> | ||
<DesignTime>True</DesignTime> | ||
<AutoGen>True</AutoGen> | ||
<DependentUpon>Resources.resx</DependentUpon> | ||
</Compile> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<EmbeddedResource Update="Properties\Resources.resx"> | ||
<Generator>ResXFileCodeGenerator</Generator> | ||
<LastGenOutput>Resources.Designer.cs</LastGenOutput> | ||
</EmbeddedResource> | ||
</ItemGroup> | ||
|
||
<PropertyGroup> | ||
<PreBuildEvent>call $(SolutionDir)Resources\Tools\rebuild_archives.bat "$(SolutionDir)" "$(MSBuildProjectDirectory)"</PreBuildEvent> | ||
</PropertyGroup> | ||
</Project> |
Binary file not shown.