Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*.verified.txt text eol=lf
*.received.txt text eol=lf
8 changes: 5 additions & 3 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
<Authors>Declan Smith</Authors>

<PackageIcon>icon.png</PackageIcon>
<PackageReadmeFile>readme.md</PackageReadmeFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageDescription>A library to implement the parsing and resolving of template text in .NET applications</PackageDescription>
Comment thread
DecSmith42 marked this conversation as resolved.
<EnablePackageValidation>true</EnablePackageValidation>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
Expand All @@ -24,7 +25,8 @@
</PropertyGroup>

<ItemGroup>
<None Include="../../images/icon.png" Pack="true" PackagePath="\" />
<None Include="../../readme.md" Pack="true" PackagePath="\" />
<None Include="$(MSBuildThisFileDirectory)images/icon.png" Pack="true" PackagePath="\" />
<None Include="$(MSBuildThisFileDirectory)README.md" Pack="true" PackagePath="\" />
<None Include="$(MSBuildThisFileDirectory)LICENSE.txt" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>
5 changes: 0 additions & 5 deletions _atom/_atom.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,6 @@
<RootNamespace>Atom</RootNamespace>
</PropertyGroup>

<ItemGroup>
<None Include="../images/icon.png" Pack="true" PackagePath="\" />
<None Include="../readme.md" Pack="true" PackagePath="\" />
</ItemGroup>

<!-- Packages-->
<ItemGroup>
<PackageReference Include="Invex.Atom.Module.GithubWorkflows" Version="3.3.0" />
Expand Down