5c12ad7cef
- Update with header/attribute changes between alpha8 and beta4 - Add support for htmax script, attributes, headers, and extension config Reviewed-on: #19
28 lines
757 B
XML
28 lines
757 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="Common.fs" />
|
|
<Compile Include="Htmx.fs" />
|
|
<Compile Include="ViewEngine.fs" />
|
|
<Compile Include="ViewEngineMax.fs" />
|
|
<Compile Include="Program.fs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Common\Giraffe.Htmx.Common.fsproj" />
|
|
<ProjectReference Include="..\Htmx\Giraffe.Htmx.fsproj" />
|
|
<ProjectReference Include="..\ViewEngine.Htmx\Giraffe.ViewEngine.Htmx.fsproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Expecto" />
|
|
<PackageReference Include="NSubstitute" />
|
|
<PackageReference Include="FSharp.Core" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|