-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathMoBi.UI.csproj
More file actions
63 lines (56 loc) · 2.65 KB
/
MoBi.UI.csproj
File metadata and controls
63 lines (56 loc) · 2.65 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0-windows</TargetFramework>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<OutputPath>bin\$(Configuration)</OutputPath>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<NoWarn>1591</NoWarn>
<Version Condition="'$(Version)' == ''">13.0.0</Version>
<GenerateResourceUsePreserializedResources>true</GenerateResourceUsePreserializedResources>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\..\SolutionInfo.cs" Link="Properties\SolutionInfo.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Northwoods.GoWin" Version="5.2.0" />
<PackageReference Include="DevExpress.Win.Design" Version="21.2.15" Condition="'$(ExcludeDesigner)' != 'true'" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.2" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="9.0.2" />
<PackageReference Include="OSPSuite.DataBinding" Version="3.0.1.4" />
<PackageReference Include="OSPSuite.DataBinding.DevExpress" Version="6.0.1.5" />
<PackageReference Include="OSPSuite.DevExpress" Version="21.2.15.1" />
<PackageReference Include="OSPSuite.Utility" Version="4.1.1.5" />
<PackageReference Include="OSPSuite.Infrastructure" Version="13.0.70" />
<PackageReference Include="OSPSuite.Infrastructure.Castle" Version="13.0.70" />
<PackageReference Include="OSPSuite.Presentation" Version="13.0.70" />
<PackageReference Include="OSPSuite.UI" Version="13.0.70" />
<PackageReference Include="OSPSuite.Core" Version="13.0.70" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\LICENSE">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\MoBi.Assets\MoBi.Assets.csproj" />
<ProjectReference Include="..\MoBi.Core\MoBi.Core.csproj" />
<ProjectReference Include="..\MoBi.Presentation\MoBi.Presentation.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
</Project>