Skip to content

Commit f44eb1b

Browse files
Enable packaging for extensions (#129)
* Use global fake tool * Fix build * Add paket templates
1 parent c1a40cd commit f44eb1b

File tree

8 files changed

+55
-41
lines changed

8 files changed

+55
-41
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ in order to craft an excellent pull request:
124124
5. Make sure all the tests are still passing.
125125

126126
```bash
127-
./build.sh
127+
fake build
128128
```
129129

130130
6. Push your topic branch up to your fork:

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ Read more about why I've decided to create Saturn, and some of its design choice
1010

1111
Saturn has a nice [documentation](https://saturnframework.github.io/docs/) and I appreciate any help to improve it further by sending pull requests or just adding an issue with you think is missing.
1212

13+
## How to build
14+
15+
1. Install requirements - .Net SDK 2.1, and FAKE 5.X
16+
2. `fake build`
17+
1318
## How to contribute
1419

1520
*Imposter syndrome disclaimer*: I want your help. No really, I do.

build.cmd

Lines changed: 0 additions & 7 deletions
This file was deleted.

build.sh

Lines changed: 0 additions & 32 deletions
This file was deleted.

sample/WindowsAuthSample/WindowsAuthSample.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88
<ItemGroup>
99
<ProjectReference Include="..\..\src\Saturn\Saturn.fsproj" />
10-
<ProjectReference Include="..\..\src\Saturn.HttpSys\Saturn.HttpSys.fsproj" />
10+
<ProjectReference Include="..\..\src\Saturn.Extensions.HttpSys\Saturn.Extensions.HttpSys.fsproj" />
1111
<Compile Include="WindowsAuthSample.fs" />
1212
</ItemGroup>
1313
<Import Project="..\..\.paket\Paket.Restore.targets" />
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
type project
2+
id Saturn.AzureFunctions
3+
description
4+
Opinionated, web development framework for F# which implements the server-side, functional MVC pattern
5+
authors
6+
Krzysztof Cieslak
7+
copyright
8+
Copyright 2017 Lambda Factory
9+
summary
10+
Opinionated, web development framework for F# which implements the server-side, functional MVC pattern
11+
licenseurl https://github.com/Krzysztof-Cieslak/Saturn/blob/master/LICENSE.md
12+
projecturl https://github.com/Krzysztof-Cieslak/Saturn
13+
iconurl https://avatars0.githubusercontent.com/u/35305523?s=200&v=4
14+
include-pdbs true
15+
tags
16+
F#, web, framework, ASP.Net, Core, HTTP, Service, MVC, functional
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
type project
2+
id Saturn.Extensions.Authorization
3+
description
4+
Opinionated, web development framework for F# which implements the server-side, functional MVC pattern
5+
authors
6+
Krzysztof Cieslak
7+
copyright
8+
Copyright 2017 Lambda Factory
9+
summary
10+
Opinionated, web development framework for F# which implements the server-side, functional MVC pattern
11+
licenseurl https://github.com/Krzysztof-Cieslak/Saturn/blob/master/LICENSE.md
12+
projecturl https://github.com/Krzysztof-Cieslak/Saturn
13+
iconurl https://avatars0.githubusercontent.com/u/35305523?s=200&v=4
14+
include-pdbs true
15+
tags
16+
F#, web, framework, ASP.Net, Core, HTTP, Service, MVC, functional
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
type project
2+
id Saturn.Extensions.HttpSys
3+
description
4+
Opinionated, web development framework for F# which implements the server-side, functional MVC pattern
5+
authors
6+
Krzysztof Cieslak
7+
copyright
8+
Copyright 2017 Lambda Factory
9+
summary
10+
Opinionated, web development framework for F# which implements the server-side, functional MVC pattern
11+
licenseurl https://github.com/Krzysztof-Cieslak/Saturn/blob/master/LICENSE.md
12+
projecturl https://github.com/Krzysztof-Cieslak/Saturn
13+
iconurl https://avatars0.githubusercontent.com/u/35305523?s=200&v=4
14+
include-pdbs true
15+
tags
16+
F#, web, framework, ASP.Net, Core, HTTP, Service, MVC, functional

0 commit comments

Comments
 (0)