-
Notifications
You must be signed in to change notification settings - Fork 4
/
source-map-sharp.fsproj
30 lines (25 loc) · 1003 Bytes
/
source-map-sharp.fsproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RootNamespace>SourceMapSharp</RootNamespace>
<Description>Source Map Sharp sourcemap generation tool</Description>
<TargetFramework>netstandard2.0</TargetFramework>
<Version>1.0.9</Version>
<PackageVersion>1.0.9</PackageVersion>
</PropertyGroup>
<ItemGroup>
<Compile Include="src/FSharpConverters.fs" />
<Compile Include="src/Util.fs" />
<Compile Include="src/ArraySet.fs" />
<Compile Include="src/MappingList.fs" />
<Compile Include="src/Base64VLQ.fs" />
<Compile Include="src/SourceMapGenerator.fs" />
<Compile Include="src/SourceNode.fs" />
<Compile Include="src/SourceMapConsumer.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Text.Json" Version="6.0.2" />
</ItemGroup>
<ItemGroup>
<Content Include="**/*.fsproj; **/*.fs" PackagePath="fable" />
</ItemGroup>
</Project>