-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathTemplateGenerator.csproj
More file actions
32 lines (25 loc) · 1005 Bytes
/
TemplateGenerator.csproj
File metadata and controls
32 lines (25 loc) · 1005 Bytes
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
31
32
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<NeutralLanguage>en-US</NeutralLanguage>
</PropertyGroup>
<PropertyGroup>
<Copyright>© 2021 IIHOSHI Yoshinori</Copyright>
<Description>Generator of the template files input to ThScoreFileConverter.</Description>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Statiq.App" Version="1.0.0-beta.72" />
<PackageReference Include="Statiq.Razor" Version="1.0.0-beta.72" />
</ItemGroup>
<!-- These are actually transitive packages, but explicitly added to avoid vulnerabilities -->
<ItemGroup>
<PackageReference Include="Microsoft.Data.SqlClient" Version="7.0.1" />
<PackageReference Include="Microsoft.Windows.Compatibility" Version="10.0.8" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ThScoreFileConverter.Core\ThScoreFileConverter.Core.csproj" />
</ItemGroup>
<ItemGroup>
<Content Include="input\style.css" />
</ItemGroup>
</Project>