Skip to content

Commit 0466e96

Browse files
committed
Fix TargetFramework for example apps.
1 parent e8975ba commit 0466e96

File tree

10 files changed

+89
-36
lines changed

10 files changed

+89
-36
lines changed

Directory.Build.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<Authors>Christian Kothe</Authors>
44
<TargetFramework>netstandard2.0</TargetFramework>
5-
<Version>1.1.2</Version>
5+
<Version>1.12.2</Version>
66
</PropertyGroup>
77
</Project>
88

+10-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1-
<Project Sdk="Microsoft.NET.Sdk"><ItemGroup>
2-
<ProjectReference Include="..\..\liblsl.csproj" />
3-
</ItemGroup><PropertyGroup><Product>HandleMetaData</Product></PropertyGroup></Project>
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
<ItemGroup>
3+
<ProjectReference Include="..\..\liblsl.csproj" />
4+
</ItemGroup>
5+
<PropertyGroup>
6+
<Product>HandleMetaData</Product>
7+
<OutputType>Exe</OutputType>
8+
<TargetFramework>netcoreapp2.0</TargetFramework>
9+
</PropertyGroup>
10+
</Project>
+10-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1-
<Project Sdk="Microsoft.NET.Sdk"><ItemGroup>
2-
<ProjectReference Include="..\..\liblsl.csproj" />
3-
</ItemGroup><PropertyGroup><Product>ReceiveData</Product></PropertyGroup></Project>
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
<ItemGroup>
3+
<ProjectReference Include="..\..\liblsl.csproj" />
4+
</ItemGroup>
5+
<PropertyGroup>
6+
<Product>ReceiveData</Product>
7+
<OutputType>Exe</OutputType>
8+
<TargetFramework>netcoreapp2.0</TargetFramework>
9+
</PropertyGroup>
10+
</Project>
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1-
<Project Sdk="Microsoft.NET.Sdk"><ItemGroup>
2-
<ProjectReference Include="..\..\liblsl.csproj" />
3-
</ItemGroup><PropertyGroup><Product>ReceiveDataInChunks</Product></PropertyGroup></Project>
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
<ItemGroup>
3+
<ProjectReference Include="..\..\liblsl.csproj" />
4+
</ItemGroup>
5+
<PropertyGroup>
6+
<Product>ReceiveDataInChunks</Product>
7+
<OutputType>Exe</OutputType>
8+
<TargetFramework>netcoreapp2.0</TargetFramework>
9+
</PropertyGroup>
10+
</Project>
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1-
<Project Sdk="Microsoft.NET.Sdk"><ItemGroup>
2-
<ProjectReference Include="..\..\liblsl.csproj" />
3-
</ItemGroup><PropertyGroup><Product>ReceiveStringMarkers</Product></PropertyGroup></Project>
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
<ItemGroup>
3+
<ProjectReference Include="..\..\liblsl.csproj" />
4+
</ItemGroup>
5+
<PropertyGroup>
6+
<Product>ReceiveStringMarkers</Product>
7+
<OutputType>Exe</OutputType>
8+
<TargetFramework>netcoreapp2.0</TargetFramework>
9+
</PropertyGroup>
10+
</Project>

examples/SendData/SendData.csproj

+10-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1-
<Project Sdk="Microsoft.NET.Sdk"><ItemGroup>
2-
<ProjectReference Include="..\..\liblsl.csproj" />
3-
</ItemGroup><PropertyGroup><Product>SendData</Product></PropertyGroup></Project>
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
<ItemGroup>
3+
<ProjectReference Include="..\..\liblsl.csproj" />
4+
</ItemGroup>
5+
<PropertyGroup>
6+
<Product>SendData</Product>
7+
<OutputType>Exe</OutputType>
8+
<TargetFramework>netcoreapp2.0</TargetFramework>
9+
</PropertyGroup>
10+
</Project>
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1-
<Project Sdk="Microsoft.NET.Sdk"><ItemGroup>
2-
<ProjectReference Include="..\..\liblsl.csproj" />
3-
</ItemGroup><PropertyGroup><Product>SendDataInChunks</Product></PropertyGroup></Project>
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
<ItemGroup>
3+
<ProjectReference Include="..\..\liblsl.csproj" />
4+
</ItemGroup>
5+
<PropertyGroup>
6+
<Product>SendDataInChunks</Product>
7+
<OutputType>Exe</OutputType>
8+
<TargetFramework>netcoreapp2.0</TargetFramework>
9+
</PropertyGroup>
10+
</Project>
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1-
<Project Sdk="Microsoft.NET.Sdk"><ItemGroup>
2-
<ProjectReference Include="..\..\liblsl.csproj" />
3-
</ItemGroup><PropertyGroup><Product>SendStringMarkers</Product></PropertyGroup></Project>
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
<ItemGroup>
3+
<ProjectReference Include="..\..\liblsl.csproj" />
4+
</ItemGroup>
5+
<PropertyGroup>
6+
<Product>SendStringMarkers</Product>
7+
<OutputType>Exe</OutputType>
8+
<TargetFramework>netcoreapp2.0</TargetFramework>
9+
</PropertyGroup>
10+
</Project>

liblsl.csproj

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<RootNamespace>LSL</RootNamespace>
66
<Product>Labstreaminglayer C# bindings</Product>
7-
<Version>1.1.2</Version>
7+
<Version>1.12</Version>
88
<DefaultItemExcludes>$(DefaultItemExcludes);examples/**</DefaultItemExcludes>
9+
<AssemblyName>lsl_csharp</AssemblyName>
910
</PropertyGroup>
1011
</Project>
1112

liblsl.sln

+16-13
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 15
4-
VisualStudioVersion = 15.0.26124.0
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.29609.76
55
MinimumVisualStudioVersion = 15.0.26124.0
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "liblsl", "liblsl.csproj", "{9CF380F5-EB84-4A39-969E-7E6F5534F17F}"
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "liblsl", "liblsl.csproj", "{9CF380F5-EB84-4A39-969E-7E6F5534F17F}"
77
EndProject
88
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "examples", "examples", "{2831BC99-EB85-43AC-AEDF-8A689B8268FC}"
99
EndProject
10-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HandleMetaData", "examples\HandleMetaData\HandleMetaData.csproj", "{55625B73-07CD-4C9F-ABFB-FB3C5899A79F}"
10+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HandleMetaData", "examples\HandleMetaData\HandleMetaData.csproj", "{55625B73-07CD-4C9F-ABFB-FB3C5899A79F}"
1111
EndProject
12-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ReceiveData", "examples\ReceiveData\ReceiveData.csproj", "{98F76BEE-C774-44C0-BAF3-BFF4B429420B}"
12+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ReceiveData", "examples\ReceiveData\ReceiveData.csproj", "{98F76BEE-C774-44C0-BAF3-BFF4B429420B}"
1313
EndProject
14-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ReceiveDataInChunks", "examples\ReceiveDataInChunks\ReceiveDataInChunks.csproj", "{A0EF1C60-7461-415B-9C98-F28A3283258A}"
14+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ReceiveDataInChunks", "examples\ReceiveDataInChunks\ReceiveDataInChunks.csproj", "{A0EF1C60-7461-415B-9C98-F28A3283258A}"
1515
EndProject
16-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ReceiveStringMarkers", "examples\ReceiveStringMarkers\ReceiveStringMarkers.csproj", "{8AB092B9-F671-4185-BB6C-543B6A2AE55A}"
16+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ReceiveStringMarkers", "examples\ReceiveStringMarkers\ReceiveStringMarkers.csproj", "{8AB092B9-F671-4185-BB6C-543B6A2AE55A}"
1717
EndProject
18-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SendData", "examples\SendData\SendData.csproj", "{4DB5312C-5B29-4725-8EA0-3458AC36FB08}"
18+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SendData", "examples\SendData\SendData.csproj", "{4DB5312C-5B29-4725-8EA0-3458AC36FB08}"
1919
EndProject
20-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SendDataInChunks", "examples\SendDataInChunks\SendDataInChunks.csproj", "{4763E2F5-B238-4896-AC52-217555ACFF2A}"
20+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SendDataInChunks", "examples\SendDataInChunks\SendDataInChunks.csproj", "{4763E2F5-B238-4896-AC52-217555ACFF2A}"
2121
EndProject
22-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SendStringMarkers", "examples\SendStringMarkers\SendStringMarkers.csproj", "{0847C79E-E4BD-4B67-8DB7-6873415815A6}"
22+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SendStringMarkers", "examples\SendStringMarkers\SendStringMarkers.csproj", "{0847C79E-E4BD-4B67-8DB7-6873415815A6}"
2323
EndProject
2424
Global
2525
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -30,9 +30,6 @@ Global
3030
Release|x64 = Release|x64
3131
Release|x86 = Release|x86
3232
EndGlobalSection
33-
GlobalSection(SolutionProperties) = preSolution
34-
HideSolutionNode = FALSE
35-
EndGlobalSection
3633
GlobalSection(ProjectConfigurationPlatforms) = postSolution
3734
{9CF380F5-EB84-4A39-969E-7E6F5534F17F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
3835
{9CF380F5-EB84-4A39-969E-7E6F5534F17F}.Debug|Any CPU.Build.0 = Debug|Any CPU
@@ -131,6 +128,9 @@ Global
131128
{0847C79E-E4BD-4B67-8DB7-6873415815A6}.Release|x86.ActiveCfg = Release|Any CPU
132129
{0847C79E-E4BD-4B67-8DB7-6873415815A6}.Release|x86.Build.0 = Release|Any CPU
133130
EndGlobalSection
131+
GlobalSection(SolutionProperties) = preSolution
132+
HideSolutionNode = FALSE
133+
EndGlobalSection
134134
GlobalSection(NestedProjects) = preSolution
135135
{55625B73-07CD-4C9F-ABFB-FB3C5899A79F} = {2831BC99-EB85-43AC-AEDF-8A689B8268FC}
136136
{98F76BEE-C774-44C0-BAF3-BFF4B429420B} = {2831BC99-EB85-43AC-AEDF-8A689B8268FC}
@@ -140,4 +140,7 @@ Global
140140
{4763E2F5-B238-4896-AC52-217555ACFF2A} = {2831BC99-EB85-43AC-AEDF-8A689B8268FC}
141141
{0847C79E-E4BD-4B67-8DB7-6873415815A6} = {2831BC99-EB85-43AC-AEDF-8A689B8268FC}
142142
EndGlobalSection
143+
GlobalSection(ExtensibilityGlobals) = postSolution
144+
SolutionGuid = {3C10DB2A-2433-4783-82DF-C6433CBD211B}
145+
EndGlobalSection
143146
EndGlobal

0 commit comments

Comments
 (0)