-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathBedrockLauncher.Localization.csproj
More file actions
36 lines (33 loc) · 1 KB
/
BedrockLauncher.Localization.csproj
File metadata and controls
36 lines (33 loc) · 1 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0-windows</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
</PropertyGroup>
<ItemGroup>
<None Remove="Resources\lang\.ext\**\*.*" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\lang\.ext\**\*.*" />
</ItemGroup>
<ItemGroup>
<Page Remove="Resources\lang\lang.default.xaml" />
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Settings.Designer.cs">
<DesignTimeSharedInput>True</DesignTimeSharedInput>
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<None Update="Properties\Settings.settings">
<Generator>PublicSettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
</ItemGroup>
<ItemGroup>
<Folder Include="Resources\lang\.ext\" />
</ItemGroup>
</Project>