Skip to content

Commit a5739e1

Browse files
author
Markus Weimer
authored
Merge pull request #2 from markusweimer/issue-1
Update Tester to be a .NET Core App
2 parents c5446f2 + 076323f commit a5739e1

File tree

2 files changed

+7
-38
lines changed

2 files changed

+7
-38
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
*exe
33
bin
44
obj
5+
.vs/

Tester/Tester.csproj

Lines changed: 6 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,12 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
33
<PropertyGroup>
4-
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5-
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6-
<ProjectGuid>{511BA459-F8F4-44EB-A94B-C0DC1463CD4A}</ProjectGuid>
74
<OutputType>Exe</OutputType>
8-
<RootNamespace>Tester</RootNamespace>
9-
<AssemblyName>Tester</AssemblyName>
10-
<TargetFrameworkVersion>v4.7</TargetFrameworkVersion>
5+
<TargetFramework>netcoreapp2.1</TargetFramework>
116
</PropertyGroup>
12-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
13-
<DebugSymbols>true</DebugSymbols>
14-
<DebugType>full</DebugType>
15-
<Optimize>false</Optimize>
16-
<OutputPath>bin\Debug</OutputPath>
17-
<DefineConstants>DEBUG;</DefineConstants>
18-
<ErrorReport>prompt</ErrorReport>
19-
<WarningLevel>4</WarningLevel>
20-
<ExternalConsole>true</ExternalConsole>
21-
<PlatformTarget>x64</PlatformTarget>
22-
</PropertyGroup>
23-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
24-
<Optimize>true</Optimize>
25-
<OutputPath>bin\Release</OutputPath>
26-
<ErrorReport>prompt</ErrorReport>
27-
<WarningLevel>4</WarningLevel>
28-
<ExternalConsole>true</ExternalConsole>
29-
</PropertyGroup>
30-
<ItemGroup>
31-
<Reference Include="System" />
32-
</ItemGroup>
33-
<ItemGroup>
34-
<Compile Include="Program.cs" />
35-
<Compile Include="Properties\AssemblyInfo.cs" />
36-
</ItemGroup>
7+
378
<ItemGroup>
38-
<ProjectReference Include="..\TorchSharp\TorchSharp.csproj">
39-
<Project>{E47E6785-B43B-49E9-A360-DB23B5E21C35}</Project>
40-
<Name>TorchSharp</Name>
41-
</ProjectReference>
9+
<ProjectReference Include="..\TorchSharp\TorchSharp.csproj" />
4210
</ItemGroup>
43-
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
11+
4412
</Project>

0 commit comments

Comments
 (0)