Skip to content

Commit c9c6373

Browse files
committed
postgresql path fix. Github issue-templates updates
1 parent 1377950 commit c9c6373

File tree

4 files changed

+27
-22
lines changed

4 files changed

+27
-22
lines changed

.github/ISSUE_TEMPLATE.md

+18-8
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,25 @@ Please provide a description of any known workarounds.
2424

2525
### Related information
2626

27+
* Database
28+
- [ ] SQLite
29+
- [ ] Micorosft SQL Server
30+
- [ ] MySQL / MariaDB
31+
- [ ] PostgreSQL
32+
- [ ] Oracle
33+
- [ ] Odbc
34+
- [ ] Microsoft Access
35+
- [ ] FireBird
36+
- [ ] DuckDB
37+
- [ ] Other
2738
* Operating system
28-
- [ ] windows [insert version here]
29-
- [ ] macOs [insert version]
30-
- [ ] linux [insert flavor/version here]
39+
- [ ] Windows [insert version here]
40+
- [ ] MacOs [insert version]
41+
- [ ] Linux [insert flavor/version here]
3142
* Platform
32-
- [ ] dotnet core
33-
- [ ] dotnet full
34-
- [ ] mono
35-
* Branch or release version
43+
- [ ] dotnet [insert version here]
44+
- [ ] .NET Framework full
45+
- [ ] Mono
46+
* Branch or release version, or nuget package name and version
3647
* Database versions and sample databases being used
3748
* Performance information, links to performance testing scripts
38-

.github/ISSUE_TEMPLATE/bug_report.md

+4-9
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,11 @@ A clear and concise description of what you expected to happen.
2020
**Screenshots**
2121
If applicable, add screenshots to help explain your problem.
2222

23-
**Desktop (please complete the following information):**
23+
**Environment (please complete the following information):**
24+
- Database: [e.g. SQLite]
25+
- Nuget Package and version: [e.g. SQLProvider.SQLite 1.5.0]
2426
- OS: [e.g. iOS]
25-
- Browser [e.g. chrome, safari]
26-
- Version [e.g. 22]
27-
28-
**Smartphone (please complete the following information):**
29-
- Device: [e.g. iPhone6]
30-
- OS: [e.g. iOS8.1]
31-
- Browser [e.g. stock browser, safari]
32-
- Version [e.g. 22]
27+
- Dotnet or .NET Framework and version [e.g. dotnet 8]
3328

3429
**Additional context**
3530
Add any other context about the problem here.

src/SQLProvider.Postgresql.DesignTime/SQLProvider.Postgresql.DesignTime.fsproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<TargetFrameworks>net8.0;netstandard2.0</TargetFrameworks>
66
<GenerateDocumentationFile>true</GenerateDocumentationFile>
77
<DefineConstants>$(DefineConstants);NO_GENERATIVE;DESIGNTIME;POSTGRESQL;MICROSOFTSQL</DefineConstants>
8-
<OutputPath>..\..\bin\postresql\typeproviders\fsharp41\</OutputPath>
8+
<OutputPath>..\..\bin\postgresql\typeproviders\fsharp41\</OutputPath>
99
<AssemblyName>FSharp.Data.SqlProvider.PostgreSql.DesignTime</AssemblyName>
1010
<Name>FSharp.Data.SqlProvider.PostgreSql</Name>
1111
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>

src/SQLProvider.Postgresql.Runtime/paket.template

+4-4
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ summary
2424
description
2525
Type providers for PostgreSql database access.
2626
files
27-
../../bin/postresql/lib/net8.0/FSharp.Data.SqlProvider.* ==> lib/net8.0
28-
../../bin/postresql/lib/netstandard2.0/FSharp.Data.SqlProvider.* ==> lib/netstandard2.0
29-
../../bin/postresql/typeproviders/fsharp41/net8.0/*.dll ==> typeproviders/fsharp41/net8.0
30-
../../bin/postresql/typeproviders/fsharp41/netstandard2.0/*.dll ==> typeproviders/fsharp41/netstandard2.0
27+
../../bin/postgresql/lib/net8.0/FSharp.Data.SqlProvider.* ==> lib/net8.0
28+
../../bin/postgresql/lib/netstandard2.0/FSharp.Data.SqlProvider.* ==> lib/netstandard2.0
29+
../../bin/postgresql/typeproviders/fsharp41/net8.0/*.dll ==> typeproviders/fsharp41/net8.0
30+
../../bin/postgresql/typeproviders/fsharp41/netstandard2.0/*.dll ==> typeproviders/fsharp41/netstandard2.0
3131
references
3232
FSharp.Data.SqlProvider.Common.dll
3333
FSharp.Data.SqlProvider.PostgreSql.dll

0 commit comments

Comments
 (0)