33---os: windows
44### VS2022
55Open VS2022 and then press "Create a new project"
6- Find C# Class Libary and clcik on it then press Next
6+ Find C# Class Library and click on it then press Next
77Name your project then press next again
88Set the Framework to .NET Standard 2.1 and click Create
99---end---
@@ -20,23 +20,24 @@ Enter you mod name then press enter 3 times
2020Now that your project has been created its time for you to set up your .csproj
2121
2222Doing this will make the mod dll to automatically go to where your ultrakill plugin folder is and skip moving the dll yourself.
23- It will also reduce problems and klet you use more mechanics in C# that makes it simpler to do things.
23+ It will also reduce problems and let you use more mechanics in C# that makes it simpler to do things.
2424
2525### Important Note: (ModName) Will be what I use to reference whatever you called your mod!
2626
2727Opening the .csproj
28+
2829---os: windows
2930### VS2022
30- Locate the "Solution Exlorer " On the right side of the screen if it isnt there you can open it by pressing (Ctrl+Alt+L)
31+ Locate the "Solution Explorer " On the right side of the screen if it isn't there you can open it by pressing (Ctrl+Alt+L)
3132There are 3 Objects that should draw your attention,
3233Class1.cs, This file holds your code
33- Dependecies , This holds the dlls your project references such as unity and ultrakill
34+ Dependencies , This holds the dlls your project references such as unity and ULTRAKILL
3435(ModName), This will be above those 2 and its named what your mod is named, this is the .csproj we have been looking for
3536Double click (ModName)
3637---end---
3738---os: mac
3839### VSCode
39- Locate the "Solution Exlorer " On the right side of the screen if it isnt there you can open it by pressing (Ctrl+Alt+L)
40+ Locate the "Solution Explorer " On the right side of the screen if it isn't there you can open it by pressing (Ctrl+Alt+L)
4041There are 2 Objects that should draw your attention,
4142Class1.cs, This file holds your code
4243(ModName).csproj, this is the .csproj we have been looking for
0 commit comments