Skip to content
This repository has been archived by the owner on Feb 6, 2023. It is now read-only.

Commit

Permalink
Switch to Jotunn
Browse files Browse the repository at this point in the history
  • Loading branch information
sweetgiorni committed Jul 9, 2022
1 parent 5d87392 commit 70c180d
Show file tree
Hide file tree
Showing 70 changed files with 3,307 additions and 137,276 deletions.
84 changes: 84 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
# Common settings that generally should always be used with your language specific settings

# Auto detect text files and perform LF normalization
# https://www.davidlaing.com/2012/09/19/customise-your-gitattributes-to-become-a-git-ninja/
* text=auto

#
# The above will handle all files NOT found below
#

# CSharp Sources
*.cs text diff=csharp

# Documents
*.bibtex text diff=bibtex
*.doc diff=astextplain
*.DOC diff=astextplain
*.docx diff=astextplain
*.DOCX diff=astextplain
*.dot diff=astextplain
*.DOT diff=astextplain
*.pdf diff=astextplain
*.PDF diff=astextplain
*.rtf diff=astextplain
*.RTF diff=astextplain
*.md text
*.tex text diff=tex
*.adoc text
*.textile text
*.mustache text
*.csv text
*.tab text
*.tsv text
*.txt text
*.sql text
*.ps1 text

# Graphics
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.tif binary
*.tiff binary
*.ico binary
# SVG treated as an asset (binary) by default.
*.svg text
# If you want to treat it as binary,
# use the following line instead.
# *.svg binary
*.eps binary

# Scripts
*.bash text eol=lf
*.fish text eol=lf
*.sh text eol=lf
# These are explicitly windows files and should use crlf
*.bat text eol=crlf
*.cmd text eol=crlf

# Serialisation
*.json text
*.toml text
*.xml text
*.yaml text
*.yml text

# Archives
*.7z binary
*.gz binary
*.tar binary
*.tgz binary
*.zip binary

# Text files where line endings should be preserved
*.patch -text

#
# Exclude files from exporting
#

.gitattributes export-ignore
.gitignore export-ignore
.gitkeep export-ignore
21 changes: 14 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,6 @@
##
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore

# Don't package Valheim proprietary assets...
libs/*.dll


*.zip
AnyPortalRelease/*

# User-specific files
*.rsuser
*.suo
Expand Down Expand Up @@ -367,3 +360,17 @@ MigrationBackup/

# Fody - auto-generated XML schema
FodyWeavers.xsd

# csproj.user file (for local environment)
*.csproj.user

# not the libraries folder
!libraries/*
.idea/

# not the valheim path file
Environment.props

# not the generated dll for thunderstore
*/Package/plugins/*
AnyPortal/Package/README.md
149 changes: 0 additions & 149 deletions AnyPortal.csproj

This file was deleted.

21 changes: 8 additions & 13 deletions AnyPortal.sln
Original file line number Diff line number Diff line change
@@ -1,31 +1,26 @@


Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.31019.35
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AnyPortal", "AnyPortal.csproj", "{11DB1F87-EBE7-49ED-A1A5-A0E31F9159F0}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AnyPortalTests", "AnyPortalTests\AnyPortalTests.csproj", "{1EA5CCEB-1738-483C-AB85-056ABA59796E}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AnyPortal", "AnyPortal\AnyPortal.csproj", "{DEAF4438-8089-40ED-8175-398E1261D45B}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{11DB1F87-EBE7-49ED-A1A5-A0E31F9159F0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{11DB1F87-EBE7-49ED-A1A5-A0E31F9159F0}.Debug|Any CPU.Build.0 = Debug|Any CPU
{11DB1F87-EBE7-49ED-A1A5-A0E31F9159F0}.Release|Any CPU.ActiveCfg = Release|Any CPU
{11DB1F87-EBE7-49ED-A1A5-A0E31F9159F0}.Release|Any CPU.Build.0 = Release|Any CPU
{1EA5CCEB-1738-483C-AB85-056ABA59796E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1EA5CCEB-1738-483C-AB85-056ABA59796E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1EA5CCEB-1738-483C-AB85-056ABA59796E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1EA5CCEB-1738-483C-AB85-056ABA59796E}.Release|Any CPU.Build.0 = Release|Any CPU
{DEAF4438-8089-40ED-8175-398E1261D45B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DEAF4438-8089-40ED-8175-398E1261D45B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DEAF4438-8089-40ED-8175-398E1261D45B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DEAF4438-8089-40ED-8175-398E1261D45B}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {3622EA89-855D-407E-9227-760F5F122139}
SolutionGuid = {04FA40AF-91D5-4CE8-92ED-7530C8DF0D5E}
EndGlobalSection
EndGlobal

Loading

0 comments on commit 70c180d

Please sign in to comment.