-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- defined common props in Directory.Build.props - removed dependancy on .NET Framework and MSBuild Community Tasks and replaced git versioning tasks with a powershell script. - locked .net core to stable release in global.json to avoid a bug with FSharp project SDK not being able to parse a nuget version - Reinstalled stylecop project reference into all projects - renabled deterministic builds on FSharp projects by chaning output type to PDB - Disabled short name tests because I could not determine any valid test or faulting case that still occurs (see #241) - Removed vagrant file - soon will not be necessary
- Loading branch information
Showing
33 changed files
with
217 additions
and
21,016 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
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,15 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<Deterministic>true</Deterministic> | ||
<CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)style.ruleset</CodeAnalysisRuleSet> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<AdditionalFiles Include="$(MSBuildThisFileDirectory)stylecop.json"> | ||
<Link>stylecop.json</Link> | ||
</AdditionalFiles> | ||
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.164"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
</Project> |
This file was deleted.
Oops, something went wrong.
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,6 @@ | ||
#!/usr/bin/env pwsh | ||
|
||
#Requires -Version 6 | ||
|
||
|
||
Write-Output "Empty stub, do not use yet" |
This file was deleted.
Oops, something went wrong.
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,5 @@ | ||
{ | ||
"sdk": { | ||
"version": "3.1.101" | ||
} | ||
} |
Binary file not shown.
Oops, something went wrong.