Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
CSharpProjectBuilder.hpp
1#pragma once
2
3#include <vector>
4#include <string>
5#include <filesystem>
6
7#include "CSharpProjectMetaData.hpp"
8
9namespace Grindstone::Editor::ScriptBuilder {
11 public:
13 void AddCodeFile(const std::filesystem::path& fileName);
14 void AddNonCodeFile(const std::filesystem::path& fileName);
15 void CreateProject() const;
16 private:
17 void OutputFile(const std::string& output) const;
18 void WriteProjectInfo(std::string& output) const;
19 void WriteCodeFiles(std::string& output) const;
20 static void WriteDllReferenceByFilename(std::string& output, const std::string& path);
21 static void WriteDllReference(std::string& output, const std::string& path);
22 static void WriteTargets(std::string& output);
23
24 std::string assemblyName;
25 std::string guid;
26 std::vector<std::filesystem::path> codeFiles;
27 std::vector<std::filesystem::path> nonCodeFiles;
28 };
29}
Definition CSharpProjectBuilder.hpp:10
Definition CSharpProjectMetaData.hpp:6