Developers
This page applies to developers who have the source code to AutoIconifier. Because the repository is not public, only those who have been authorized access can view the source code. For more information or inquires email [email protected].
Requirements
.NET 5
In most cases, when you have Visual Studio installed with the .NET Frameworks checked, these steps are not required.
Install .NET Framework v5:
Clear your nuget cache:
dotnet nuget locals all --clear
NOTE: this is going to contain the "stable" versions of the packages, so you will have to clear the NuGet cache when this feed changes and when .NET ships. The various
darc-pub-dotnet-*
feeds are temporary and are generated on various builds. These feeds my disappear and be replaced with new ones as new builds come out. Make sure to verify that you are on the latest here and clear the nuget cache if it changes:
Running
.NET Framework v5
Compile AutoIconifier to an executable
:: Navigate from the solution to the actual project
cd ./AutoIconifier
:: Build using dotnet
dotnet build
:: or build using globally installed msbuild
msbuild
Using msbuild
is not longer recommended.
Contributing
Legal
By using AutoIconifier or by contributing to the respective repository, you are legally binding yourself with the Code of Conduct and Terms and Conditions.
Cloning the Repository
git clone https://source.microart.cf/auto-iconifier.git"
cd ./AutoIconifier
Create a temporary branch
git checkout -b [Any Temporary Name]
Example
git checkout -b new-gui
Make your changes
Edit the files how you please. Visual Studio and other IDE's will automatically enable git support and keep track of all the changes you make as you go.
Committing and Pushing
git commit -m "Made changes to the overall UI"
and
git push origin new-gui
Finally submitting the changes for final review from Microart
This requires using the GitHub website or Desktop app. Simply go to the repository and select the main
or master
branch. From here press 'Compare & Pull Request' to open a pull request. In here fill the necessary details required by Microart and press 'Create pull request'. Your pull request will be processed as soon as possible.
Last updated