Skip to content

Commit

Permalink
Prerelease v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Arthri authored Jun 8, 2024
2 parents b7e6cda + dc31cc7 commit 880ae62
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 22 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
indent_style = space
indent_size = 4
tab_width = 4
end_of_line = crlf
end_of_line = lf
charset = utf-8-bom
trim_trailing_whitespace = true
insert_final_newline = true
Expand Down
2 changes: 0 additions & 2 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
* text=auto eol=lf

*.cs text eol=crlf
12 changes: 12 additions & 0 deletions .github/workflows/check-eol.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Check End-of-Line Sequences
run-name: Check End-of-Line Sequences

on:
push:
branches: [ master, dev ]
pull_request:
branches: [ master, dev ]

jobs:
check-eol:
uses: Arthri/check-eol/.github/workflows/check-eol.yml@v1
3 changes: 2 additions & 1 deletion src/Belp.SDK.PackOnly/Assets/Sdk/Sdk.props
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@



<Import Project="Sdk.props" Sdk="Belp.SDK.Common" Version="0.2.0" />
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" />


Expand All @@ -25,6 +24,8 @@

<EnableDefaultItems>false</EnableDefaultItems>

<GeneratePackageOnBuild>true</GeneratePackageOnBuild>

<!-- Do not include build output in package -->
<IncludeBuildOutput>false</IncludeBuildOutput>

Expand Down
13 changes: 0 additions & 13 deletions src/Belp.SDK.PackOnly/Assets/Sdk/Sdk.targets
Original file line number Diff line number Diff line change
@@ -1,19 +1,6 @@
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

<!-- Configure project as pack-only -->
<PropertyGroup>
<!-- Disable Build -->
<!--
This needs to be in targets,
so the project can configure $(DisableDefaultBuild).
-->
<NoBuild Condition="'$(DisableDefaultBuild)' != 'false'">true</NoBuild>
</PropertyGroup>



<Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" />
<Import Project="Sdk.targets" Sdk="Belp.SDK.Common" Version="0.2.0" />



Expand Down
6 changes: 1 addition & 5 deletions src/Belp.SDK.PackOnly/Belp.SDK.PackOnly.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
<Project>

<Import Project="Assets/Sdk/Sdk.props" />
<Project Sdk="Belp.SDK.PackOnly/0.4.0">

<!-- Package Information -->
<PropertyGroup>
Expand Down Expand Up @@ -28,6 +26,4 @@
</PackageReference>
</ItemGroup>

<Import Project="Assets/Sdk/Sdk.targets" />

</Project>

0 comments on commit 880ae62

Please sign in to comment.