Configuration template for simplifying the definition of Visual Studio (MSBuild) C++ projects.
You only need to contain this Git repository as submodule in you Git repository.
There are some samples in https://github.com/ProjectMile/Mile.Project.Windows.Samples that demonstrate defining Visual Studio (MSBuild) C++ projects with Mile.Project.Windows. We hope it can help you develop applications with Mile.Project.Windows.
- If the project is a console application project.
<MileProjectType>ConsoleApplication</MileProjectType>
- If the project is a windows application project.
<MileProjectType>WindowsApplication</MileProjectType>
- If the project is a dynamic library project.
<MileProjectType>DynamicLibrary</MileProjectType>
- If the project is a static library project.
<MileProjectType>StaticLibrary</MileProjectType>
- If the project is a WDM driver project.
<MileProjectType>WDMDriver</MileProjectType>
- If the project is a KMDF driver project.
<MileProjectType>KMDFDriver</MileProjectType>
- If the project is a UMDF driver project.
<MileProjectType>UMDFDriver</MileProjectType>
<MileProjectManifestFile>C:\Folder\Manifest.manifest</MileProjectManifestFile>
<MileProjectUseProjectProperties>true</MileProjectUseProjectProperties>
<MileProjectCompanyName>TODO: Company Name</MileProjectCompanyName>
<MileProjectFileDescription>TODO: File Description</MileProjectFileDescription>
<MileProjectInternalName>$(TargetName)</MileProjectInternalName>
<MileProjectLegalCopyright>© TODO: Company Name. All rights reserved.</MileProjectLegalCopyright>
<MileProjectOriginalFilename>$(TargetName)$(TargetExt)</MileProjectOriginalFilename>
<MileProjectProductName>$(TargetName)</MileProjectProductName>
<MileProjectVersion>1.0.0.1</MileProjectVersion>
<MileProjectVersionTag>Preview 1</MileProjectVersionTag>
<MileProjectEnableVCLTLSupport>true</MileProjectEnableVCLTLSupport>
Note: YY-Thunks support will be enabled if you have enabled VC-LTL support.
<MileProjectEnableCppWinRTSupport>true</MileProjectEnableCppWinRTSupport>
<MileProjectUseClangCLToolset>true</MileProjectUseClangCLToolset>
<MileProjectUseWindowsDriverKit>true</MileProjectUseWindowsDriverKit>
<MileProjectUseKernelMode>true</MileProjectUseKernelMode>
<MileProjectEnableYYThunksSupport>true</MileProjectEnableYYThunksSupport>