forked from oxyplot/oxyplot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExampleLibrary.core.csproj
More file actions
34 lines (33 loc) · 1.15 KB
/
ExampleLibrary.core.csproj
File metadata and controls
34 lines (33 loc) · 1.15 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<ProductVersion>10.0.0</ProductVersion>
<RootNamespace>ExampleLibrary</RootNamespace>
<AssemblyName>ExampleLibrary</AssemblyName>
<ProjectGuid>{FACB89E5-53A5-4748-9F5B-E0714EBB37B2}</ProjectGuid>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>ExampleLibrary.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\..\GlobalAssemblyInfo.cs">
<Link>Properties\GlobalAssemblyInfo.cs</Link>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\Bergensbanen.csv" />
<EmbeddedResource Include="Resources\OxyPlot.png" />
<EmbeddedResource Include="Resources\west0479.mtx" />
<EmbeddedResource Include="Resources\WorldPopulation.xml" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\OxyPlot\OxyPlot.core.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="ExampleLibrary.snk" />
</ItemGroup>
</Project>