This repository has been archived by the owner on Mar 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathLineToolLite.csproj
44 lines (41 loc) · 1.52 KB
/
LineToolLite.csproj
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
33
34
35
36
37
38
39
40
41
42
43
44
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Title>Line Tool Lite</Title>
<AssemblyTitle>$(Title)</AssemblyTitle>
<Description>A Cities: Skylines 2 mod.</Description>
<Authors>algernon</Authors>
<Copyright>Copyright © 2023-24 algernon (github.com/algernon-A). All rights reserved.</Copyright>
<Product>$(Title)</Product>
<Version>1.3.4</Version>
<LangVersion>9.0</LangVersion>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
</PropertyGroup>
<Import Project="Config/Postbuild.csproj" />
<Import Project="Config/Targets.csproj" />
<Import Project="Config/References.csproj" />
<Import Project="BepInEx/BepInEx.csproj" />
<ItemGroup>
<AdditionalFiles Include="stylecop.json" />
</ItemGroup>
<ItemGroup>
<None Include="Config/PostBuild.csproj" />
<None Include="Config/References.csproj" />
<None Include="Config/Targets.csproj" />
<None Include="BepInEx/BepInEx.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="l10n.csv" />
<EmbeddedResource Include="UI\common.js" />
<EmbeddedResource Include="UI\modes.js" />
<EmbeddedResource Include="UI\modes.html" />
<EmbeddedResource Include="UI\ui.css" />
<EmbeddedResource Include="UI\ui.html" />
<EmbeddedResource Include="UI\ui.js" />
</ItemGroup>
</Project>