forked from steto-scope/LiveSplit.Racetime
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
25 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ | |
.fleet/ | ||
|
||
# Build artifacts | ||
artifacts/ | ||
bin/ | ||
obj/ | ||
publish/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<Project> | ||
|
||
<!-- Imports `Directory.Build.props` from the above directory, if it exists. --> | ||
<!-- If it does not, the properties `LsSrcPath`, `LsLibPath`, and `ComponentsDir` must be provided via the command line. --> | ||
<!-- Example: `dotnet build -p:LsSrcPath=path/to/LiveSplit/src` --> | ||
|
||
<Import Project="..\Directory.Build.props" | ||
Condition="Exists('..\Directory.Build.props')" /> | ||
|
||
<PropertyGroup Label="Project Settings"> | ||
<TargetFramework>net4.6.1</TargetFramework> | ||
|
||
<Nullable>disable</Nullable> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Label="Common Directories"> | ||
<RootPath>$(MSBuildThisFileDirectory)</RootPath> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Label="Output Settings"> | ||
<UseArtifactsOutput>true</UseArtifactsOutput> | ||
</PropertyGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters