Move data file links
This commit is contained in:
parent
16eb399328
commit
2c2304082a
|
@ -17,8 +17,8 @@
|
||||||
<Compile Include="Program.fs" />
|
<Compile Include="Program.fs" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Content Include="../../data/channels.dat" />
|
<Content Include="data/channels.dat" />
|
||||||
<Content Include="../../data/config.json">
|
<Content Include="data/config.json">
|
||||||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||||
</Content>
|
</Content>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
|
@ -5,7 +5,7 @@ module Channels =
|
||||||
open FSharp.Data
|
open FSharp.Data
|
||||||
open System.IO
|
open System.IO
|
||||||
|
|
||||||
let private filepath = __SOURCE_DIRECTORY__ + "/../../data/channels.dat"
|
let private filepath = __SOURCE_DIRECTORY__ + "/data/channels.dat"
|
||||||
|
|
||||||
let mutable channels =
|
let mutable channels =
|
||||||
File.ReadLines(filepath)
|
File.ReadLines(filepath)
|
||||||
|
|
|
@ -7,7 +7,7 @@ module Config =
|
||||||
|
|
||||||
let private getConfig =
|
let private getConfig =
|
||||||
let builder = new ConfigurationBuilder()
|
let builder = new ConfigurationBuilder()
|
||||||
do builder.SetBasePath( Directory.GetCurrentDirectory() + "/../../data" ) |> ignore
|
do builder.SetBasePath( Directory.GetCurrentDirectory() + "/data" ) |> ignore
|
||||||
do builder.AddJsonFile("config.json") |> ignore
|
do builder.AddJsonFile("config.json") |> ignore
|
||||||
builder.Build()
|
builder.Build()
|
||||||
|
|
||||||
|
|
Reference in New Issue