-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathETS2ATS.ModlistManager.csproj
More file actions
74 lines (74 loc) · 3.31 KB
/
ETS2ATS.ModlistManager.csproj
File metadata and controls
74 lines (74 loc) · 3.31 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0-windows</TargetFramework>
<OutputType>WinExe</OutputType>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AssemblyName>ETS2ATS.ModlistManager</AssemblyName>
<RootNamespace>ETS2ATS.ModlistManager</RootNamespace>
<ApplicationIcon>ModlistManager\Resources\app.ico</ApplicationIcon>
<Version>0.1.19.1</Version>
<AssemblyVersion>0.1.19.1</AssemblyVersion>
<FileVersion>0.1.19.1</FileVersion>
<Authors>Community</Authors>
<Company>
</Company>
<Copyright>Copyright © 2025</Copyright>
<PackageProjectUrl>https://github.com/rohere58/ETS2ATS.ModlistManager</PackageProjectUrl>
<RepositoryUrl>https://github.com/rohere58/ETS2ATS.ModlistManager</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MPL-2.0</PackageLicenseExpression>
</PropertyGroup>
<!-- Entfernt: Externe Tools (z.B. SII_Decrypt.exe) werden nicht mehr mit ausgeliefert.
Nutzer platzieren das Tool bei Bedarf manuell unter:
- ModlistManager/Tools/SII_Decrypt.exe oder
- Tools/SII_Decrypt.exe (Fallback)
(Historischer Eintrag war hier als <Content Include="ModlistManager\Tools\**\*" ...>) -->
<!-- Ressourcen kopieren (allgemein) -->
<ItemGroup>
<Content Include="ModlistManager\Resources\**\*.*">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<TargetPath>Resources\%(RecursiveDir)%(Filename)%(Extension)</TargetPath>
<CopyToPublishDirectory>Always</CopyToPublishDirectory>
</Content>
</ItemGroup>
<!-- Sprachdateien zusätzlich an den von LanguageService erwarteten Pfad kopieren:
bin/.../ModlistManager/Resources/Languages/lang.<code>.json -->
<ItemGroup>
<Content Include="ModlistManager\Resources\Languages\lang.*.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<CopyToPublishDirectory>Always</CopyToPublishDirectory>
<TargetPath>ModlistManager\Resources\Languages\%(Filename)%(Extension)</TargetPath>
</Content>
</ItemGroup>
<!-- Top-Level Languages Ordner (Legacy/Erweiterungen): mit ausliefern -->
<ItemGroup>
<Content Include="Languages\lang.*.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<CopyToPublishDirectory>Always</CopyToPublishDirectory>
<TargetPath>Languages\%(Filename)%(Extension)</TargetPath>
</Content>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<!-- Einzelne Sprachdatei-Einträge nicht mehr nötig (siehe Block oben) -->
<!-- Modlists jetzt unter ModlistManager/modlists -->
<ItemGroup>
<Content Include="ModlistManager\modlists\**\*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<CopyToPublishDirectory>Always</CopyToPublishDirectory>
</Content>
</ItemGroup>
<!-- Gebündelte externen Tools (SII_Decrypt.exe + LICENSES) immer mitnehmen -->
<ItemGroup>
<Content Include="ModlistManager\Tools\**\*">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<CopyToPublishDirectory>Always</CopyToPublishDirectory>
</Content>
</ItemGroup>
</Project>