Skip to content

Latest commit

 

History

History
38 lines (27 loc) · 1.17 KB

README.md

File metadata and controls

38 lines (27 loc) · 1.17 KB

UiPath-GitAttributes

This repository contains .gitattributes files for UiPath development. The .gitattributes file allows the GitHub linguist detect a file type. In this case it would be to set the .xaml file to C# or VB.Net.

Getting Started

Download or create the .gitattributes file and put it in the root of the project. This should be the UiPath project and also the folder used for the git init command.

Details

C#
# Automatically normalize line endings for text files
* text=auto

# Language CSharp
*.xaml linguist-language=CSharp
VB.Net
# Automatically normalize line endings for text files
* text=auto

# Language VB.Net
*.xaml linguist-language=vb.net

Links