Skip to content

ShonHarsh/UiPath-GitAttributes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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