-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLSPDFRManager.csproj
More file actions
49 lines (41 loc) · 2.11 KB
/
Copy pathLSPDFRManager.csproj
File metadata and controls
49 lines (41 loc) · 2.11 KB
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
45
46
47
48
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<RootNamespace>LSPDFRManager</RootNamespace>
<AssemblyName>LSPDFRManager</AssemblyName>
<Description>Desktop mod manager for GTA V LSPDFR installations.</Description>
<Authors>rolling-codes</Authors>
<RepositoryUrl>https://github.com/rolling-codes/LSPDFRManager</RepositoryUrl>
<Version>3.7.23</Version>
<AssemblyVersion>3.7.23.0</AssemblyVersion>
<FileVersion>3.7.23.0</FileVersion>
<ApplicationManifest>app.manifest</ApplicationManifest>
</PropertyGroup>
<ItemGroup>
<Compile Remove="LSPDFRManager.Api\**;LSPDFRManager.LocalApi\**;LSPDFRManager.Shared\**;LSPDFRManager.Tests\**;release-worktree\**;frontend\**" />
<EmbeddedResource Remove="LSPDFRManager.Api\**;LSPDFRManager.LocalApi\**;LSPDFRManager.Shared\**;LSPDFRManager.Tests\**;release-worktree\**;frontend\**" />
<None Remove="LSPDFRManager.Api\**;LSPDFRManager.LocalApi\**;LSPDFRManager.Shared\**;LSPDFRManager.Tests\**;release-worktree\**;frontend\**" />
<Page Remove="LSPDFRManager.Api\**;LSPDFRManager.LocalApi\**;LSPDFRManager.Shared\**;LSPDFRManager.Tests\**;release-worktree\**;frontend\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="SharpCompress" Version="0.38.0" />
<PackageReference Include="Microsoft.Web.WebView2" Version="1.0.2739.15" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="LSPDFRManager.Shared\LSPDFRManager.Shared.csproj" />
<ProjectReference Include="LSPDFRManager.LocalApi\LSPDFRManager.LocalApi.csproj" />
</ItemGroup>
<ItemGroup>
<Content Include="LSPDFRManager.LocalApi\wwwroot\**\*"
Link="wwwroot\%(RecursiveDir)%(Filename)%(Extension)"
CopyToOutputDirectory="PreserveNewest"
CopyToPublishDirectory="Always" />
</ItemGroup>
<ItemGroup>
<None Include="run.bat" CopyToOutputDirectory="PreserveNewest" CopyToPublishDirectory="Always" />
</ItemGroup>
</Project>