Skip to content

microsoft/undocked

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

41 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Undocked Windows Development

The goal of this project is to provide helpers for Windows components to build exactly as they would internally in the Windows OS repository, but without a lot of complicated manual steps.

This project provides three main components:

  • windows.undocked.props - Visual Studio property file to simplify components' project files.
  • windows.undocked.targets - Similar to the .props file, but only required if source link is being used.
  • build.yml - Azure Pipelines template to correctly build in OneBranch (Microsoft's internal Azure Pipelines sandbox).

Example

With these helpers, new vcxproj files can be easily created, understood and maintained by a human. The following is an example for myapp.exe.

<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <PropertyGroup>
    <ProjectGuid>{4b452093-0ce2-4305-811a-06573ccab3c5}</ProjectGuid>
    <TargetName>myapp</TargetName>
    <UndockedType>exe</UndockedType>
  </PropertyGroup>
  <Import Project="$(UndockedDir)vs\windows.undocked.props" />
  <ItemGroup>
    <ClCompile Include="main.c" />
    <ResourceCompile Include="myapp.rc" />
  </ItemGroup>
  <Import Project="$(UndockedDir)vs\windows.undocked.targets" />
</Project>

Usage

To use this project in your component, you must:

Get Local Build Working

  1. Submodule this repository into your component's repository.
  2. Create a version.json file to hold your component's version (see example).
  3. Update your component's project files to set the undocked variables (see examples).
  4. Import windows.undocked.props.

Get OneBranch Build Working

  1. Copy the .azure directory into your project.
  2. Update the OneBranch.*.yml files as necessary for your project.
  3. Onboard these new pipelines to OneBranch.

Note - As mentioned above, OneBranch is an internal to Microsoft build environment. If you are not a Microsoft employee, you will not be able to use these pipelines. You can, however, still leverage the property file to build locally.

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.

When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

Trademarks

This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow Microsoft's Trademark & Brand Guidelines. Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-party's policies.

About

Simplifies the process of building internal, native Windows projects

Topics

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks