-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathExampleModule.csproj
More file actions
35 lines (28 loc) · 1.37 KB
/
ExampleModule.csproj
File metadata and controls
35 lines (28 loc) · 1.37 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
<Project Sdk="Microsoft.NET.Sdk.Razor">
<!-- Import module packaging targets (provided automatically via NuGet, manual import needed for ProjectReference) -->
<Import Project="../ModuleBase/build/OpenShock.Desktop.ModuleBase.props" />
<PropertyGroup>
<OpenShockModuleId>openshock.desktop.modules.examplemodule</OpenShockModuleId>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<OutputType>Library</OutputType>
<AssemblyName>OpenShock.Desktop.Modules.ExampleModule</AssemblyName>
<RootNamespace>OpenShock.Desktop.Modules.ExampleModule</RootNamespace>
<Configurations>Debug;Release</Configurations>
<Platforms>AnyCPU</Platforms>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\ModuleBase\ModuleBase.csproj" />
</ItemGroup>
<ItemGroup>
<None Remove="Icon.svg" />
<EmbeddedResource Include="Icon.svg" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MudBlazor" Version="9.1.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
</ItemGroup>
<!-- Import module packaging targets (provided automatically via NuGet, manual import needed for ProjectReference) -->
<Import Project="../ModuleBase/build/OpenShock.Desktop.ModuleBase.targets" />
</Project>