8000 Nuspec fix by thefringeninja · Pull Request #1 · SQLStreamStore/SQLStreamStore · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Aug 15, 2024. It is now read-only.
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
47 changes: 47 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# Set default behaviour, in case users don't have core.autocrlf set.
* text=auto

# Explicitly declare text files we want to always be normalized and converted
# to native line endings on checkout.
*.c text
*.h text
*.cs text
*.config text
*.xml text
*.manifest text
*.bat text
*.cmd text
*.sh text
*.txt text
*.dat text
*.rc text
*.ps1 text
*.psm1 text
*.js text
*.css text
*.html text
*.sln text
*.DotSettings text
*.csproj text
*.ncrunchproject text
*.fs text
*.fsproj text
*.liquid text
*.boo text
*.pp text
*.targets text
*.markdown text
*.md text
*.bat text
*.xslt text

# Declare files that will always have CRLF line endings on checkout.

# Denote all files that are truly binary and should not be modified.
*.ico binary
*.gif binary
*.png binary
*.jpg binary
*.dll binary
*.exe binary
*.pdb binary
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
<Compile Include="ResolvedEventExtensions.cs" />
</ItemGroup>
<ItemGroup>
<None Include="Cedar.EventStore.GetEventStore.nuspec" />
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
</dependencies>
</metadata>
<files>
<file src="..\..\build\merged\Cedar.EventStore.GetEventStore.dll" target="net45" />
<file src="..\..\build\merged\Cedar.EventStore.GetEventStore.pdb" target="net45" />
<file src="..\..\build\merged\Cedar.EventStore.GetEventStore.dll" target="lib\net45" />
<file src="..\..\build\merged\Cedar.EventStore.GetEventStore.pdb" target="lib\net45" />
<file src="bin\Release\Cedar.EventStore.xml" target="net45" />
</files>
</package>
1 change: 1 addition & 0 deletions src/Cedar.EventStore/Cedar.EventStore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@
</Reference>
</ItemGroup>
<ItemGroup>
<None Include="Cedar.EventStore.nuspec" />
<None Include="packages.config" />
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
Expand Down
0