-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSDAT.Modules.ConvertRadix.csproj
More file actions
28 lines (28 loc) · 1008 Bytes
/
SDAT.Modules.ConvertRadix.csproj
File metadata and controls
28 lines (28 loc) · 1008 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<VersionPrefix>1.0.0</VersionPrefix>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="MaterialDesignThemes" Version="5.3.0" />
<PackageReference Include="Prism.Wpf" Version="9.0.537" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\SDAT.Core\SDAT.Core.csproj" />
<ProjectReference Include="..\..\Services\SDAT.Services.Interfaces\SDAT.Services.Interfaces.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Update="Resources\Strings.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Strings.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Resources\Strings.resx">
<Generator>PublicResXFileCodeGenerator</Generator>
<LastGenOutput>Strings.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
</Project>