Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Netstandard 2.0, redo build.fsx, version updates #26

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -254,3 +254,5 @@ paket-files/
TestResults.xml

dist/

.ionide
30 changes: 30 additions & 0 deletions Content/.config/dotnet-tools.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"version": 1,
"isRoot": true,
"tools": {
"paket": {
"version": "5.257.0",
"commands": [
"paket"
]
},
"fable": {
"version": "3.1.15",
"commands": [
"fable"
]
},
"fake-cli": {
"version": "5.20.4",
"commands": [
"fake"
]
},
"fsharp-analyzers": {
"version": "0.8.0",
"commands": [
"fsharp-analyzers"
]
}
}
}
3 changes: 3 additions & 0 deletions Content/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -254,3 +254,6 @@ paket-files/
TestResults.xml

dist/
.fable
*.bundle.js
*.fs.js
335 changes: 295 additions & 40 deletions Content/.paket/Paket.Restore.targets

Large diffs are not rendered by default.

Binary file removed Content/.paket/paket.exe
Binary file not shown.
6 changes: 0 additions & 6 deletions Content/.paket/paket.exe.config

This file was deleted.

58 changes: 0 additions & 58 deletions Content/.paket/paket.targets

This file was deleted.

28 changes: 23 additions & 5 deletions Content/.template.config/template.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
{
"$schema": "http://json.schemastore.org/template",
"author": "Jimmy Byrd",
"classifications": ["Scaffold"],
"name": "Fable.Library.Template",
"classifications": ["Scaffold", "Fable"],
"name": "Fable Library Template",
"tags": {
"language": "F#"
"language": "F#",
"type": "project"
},
"identity": "Fable.Library.Template",
"shortName": "fable-library",
Expand All @@ -15,5 +17,21 @@
"type": "parameter",
"replaces": "MyGithubUsername"
}
}
}
},
"postActions": [
{
"condition": "(OS != \"Windows_NT\")",
"description": "Make scripts executable",
"manualInstructions": [
{
"text": "Run 'chmod +x *.sh'"
}
],
"actionId": "cb9a6cf3-4f5c-4860-b9d2-03a574959774",
"args": {
"+x": "*.sh"
},
"continueOnError": true
}
]
}
27 changes: 0 additions & 27 deletions Content/.travis.yml

This file was deleted.

15 changes: 15 additions & 0 deletions Content/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.1.0] - 2017-03-17
First release

### Added
- This release already has lots of features

[0.1.0]: https://github.com/user/MyCoolNewLib.git/releases/tag/v0.1.0
48 changes: 48 additions & 0 deletions Content/MyLib.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.6.30114.105
MinimumVisualStudioVersion = 10.0.40219.1
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fable.MyLib", "src\Fable.MyLib.fsproj", "{921AF918-B6B1-4827-987F-E1A20DBB7585}"
EndProject
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Fable.MyLib.Tests", "tests\Fable.MyLib.Tests.fsproj", "{D6764D65-7022-4DE0-A8AE-64D09A9228E6}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{921AF918-B6B1-4827-987F-E1A20DBB7585}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{921AF918-B6B1-4827-987F-E1A20DBB7585}.Debug|Any CPU.Build.0 = Debug|Any CPU
{921AF918-B6B1-4827-987F-E1A20DBB7585}.Debug|x64.ActiveCfg = Debug|Any CPU
{921AF918-B6B1-4827-987F-E1A20DBB7585}.Debug|x64.Build.0 = Debug|Any CPU
{921AF918-B6B1-4827-987F-E1A20DBB7585}.Debug|x86.ActiveCfg = Debug|Any CPU
{921AF918-B6B1-4827-987F-E1A20DBB7585}.Debug|x86.Build.0 = Debug|Any CPU
{921AF918-B6B1-4827-987F-E1A20DBB7585}.Release|Any CPU.ActiveCfg = Release|Any CPU
{921AF918-B6B1-4827-987F-E1A20DBB7585}.Release|Any CPU.Build.0 = Release|Any CPU
{921AF918-B6B1-4827-987F-E1A20DBB7585}.Release|x64.ActiveCfg = Release|Any CPU
{921AF918-B6B1-4827-987F-E1A20DBB7585}.Release|x64.Build.0 = Release|Any CPU
{921AF918-B6B1-4827-987F-E1A20DBB7585}.Release|x86.ActiveCfg = Release|Any CPU
{921AF918-B6B1-4827-987F-E1A20DBB7585}.Release|x86.Build.0 = Release|Any CPU
{D6764D65-7022-4DE0-A8AE-64D09A9228E6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D6764D65-7022-4DE0-A8AE-64D09A9228E6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D6764D65-7022-4DE0-A8AE-64D09A9228E6}.Debug|x64.ActiveCfg = Debug|Any CPU
{D6764D65-7022-4DE0-A8AE-64D09A9228E6}.Debug|x64.Build.0 = Debug|Any CPU
{D6764D65-7022-4DE0-A8AE-64D09A9228E6}.Debug|x86.ActiveCfg = Debug|Any CPU
{D6764D65-7022-4DE0-A8AE-64D09A9228E6}.Debug|x86.Build.0 = Debug|Any CPU
{D6764D65-7022-4DE0-A8AE-64D09A9228E6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D6764D65-7022-4DE0-A8AE-64D09A9228E6}.Release|Any CPU.Build.0 = Release|Any CPU
{D6764D65-7022-4DE0-A8AE-64D09A9228E6}.Release|x64.ActiveCfg = Release|Any CPU
{D6764D65-7022-4DE0-A8AE-64D09A9228E6}.Release|x64.Build.0 = Release|Any CPU
{D6764D65-7022-4DE0-A8AE-64D09A9228E6}.Release|x86.ActiveCfg = Release|Any CPU
{D6764D65-7022-4DE0-A8AE-64D09A9228E6}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal
2 changes: 0 additions & 2 deletions Content/RELEASE_NOTES.md

This file was deleted.

9 changes: 0 additions & 9 deletions Content/appveyor.yml

This file was deleted.