-
Notifications
You must be signed in to change notification settings - Fork 3
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
1 parent
dbb04e8
commit 23595a9
Showing
4 changed files
with
38 additions
and
26 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,5 @@ | ||
is_global = true | ||
|
||
# StyleCop Rules | ||
## Description: StyleCop code analysis rules for C# projects. | ||
dotnet_diagnostic.SA1600.severity = none |
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 |
---|---|---|
@@ -1,19 +1,49 @@ | ||
<Project> | ||
|
||
<!-- Implicit global usings--> | ||
<ItemGroup Condition=" '$(ImplicitUsings)' == 'true' "> | ||
<Using Include="System.Runtime.InteropServices" /> | ||
<Using Include="bottlenoselabs.C2CS" /> | ||
</ItemGroup> | ||
|
||
<!-- .NET8: Use artifacts path for bin/obj output folders --> | ||
<PropertyGroup> | ||
<UseArtifactsOutput>true</UseArtifactsOutput> | ||
<ArtifactsPath>$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), .gitignore))/artifacts</ArtifactsPath> | ||
</PropertyGroup> | ||
|
||
<!-- NuGet package references --> | ||
<ItemGroup> | ||
<PackageReference Include="bottlenoselabs.Common.Tools" Version="*"> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
|
||
<PackageReference Include="StyleCop.Analyzers.Unstable" Version="*"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
|
||
</Project> | ||
<!-- Dynamic link libraries --> | ||
<PropertyGroup> | ||
<LibraryName>SDL</LibraryName> | ||
<LibraryDirectoryPath>$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory),.gitignore))/lib</LibraryDirectoryPath> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Content Include="$(LibraryDirectoryPath)/*.dll"> | ||
<Link>%(Filename)%(Extension)</Link> | ||
<Pack>false</Pack> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</Content> | ||
<Content Include="$(LibraryDirectoryPath)/*.dylib"> | ||
<Link>%(Filename)%(Extension)</Link> | ||
<Pack>false</Pack> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</Content> | ||
<Content Include="$(LibraryDirectoryPath)/*.so"> | ||
<Link>%(Filename)%(Extension)</Link> | ||
<Pack>false</Pack> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</Content> | ||
</ItemGroup> | ||
|
||
</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