Skip to content
This repository was archived by the owner on Sep 23, 2023. It is now read-only.

Commit 194167c

Browse files
committed
Add dotNet core support
1 parent 9448791 commit 194167c

File tree

3 files changed

+35
-7
lines changed

3 files changed

+35
-7
lines changed

tak2flac.Test/tak2flac.Test.csproj

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,11 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp3.0</TargetFramework>
4+
<TargetFramework>netcoreapp3.1</TargetFramework>
55

66
<IsPackable>false</IsPackable>
77
</PropertyGroup>
88

9-
<ItemGroup>
10-
<None Remove="data\マイペースでいきましょう.tak" />
11-
</ItemGroup>
12-
139
<ItemGroup>
1410
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.5.0" />
1511
<PackageReference Include="MSTest.TestAdapter" Version="2.1.0" />
@@ -18,7 +14,7 @@
1814
</ItemGroup>
1915

2016
<ItemGroup>
21-
<ProjectReference Include="..\tak2flac\tak2flac.csproj" />
17+
<ProjectReference Include="..\tak2flac\tak2flac.Core.csproj" />
2218
</ItemGroup>
2319

2420
<ItemGroup>

tak2flac/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
[assembly: AssemblyConfiguration("")]
1111
[assembly: AssemblyCompany("")]
1212
[assembly: AssemblyProduct("tak2flac")]
13-
[assembly: AssemblyCopyright("Copyright © 2020")]
13+
[assembly: AssemblyCopyright("github@appleneko2001")]
1414
[assembly: AssemblyTrademark("")]
1515
[assembly: AssemblyCulture("")]
1616

tak2flac/tak2flac.Core.csproj

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
<PropertyGroup>
3+
<OutputType>Exe</OutputType>
4+
<RootNamespace>tak2flac</RootNamespace>
5+
<AssemblyName>tak2flac</AssemblyName>
6+
<TargetFramework>netcoreapp3.1</TargetFramework>
7+
</PropertyGroup>
8+
9+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
10+
<PlatformTarget>AnyCPU</PlatformTarget>
11+
<Prefer32Bit>true</Prefer32Bit>
12+
<DefineConstants>DEBUG;TRACE</DefineConstants>
13+
</PropertyGroup>
14+
15+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
16+
<Prefer32Bit>true</Prefer32Bit>
17+
</PropertyGroup>
18+
19+
<ItemGroup>
20+
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
21+
<Reference Include="System"/>
22+
<Reference Include="Microsoft.CSharp"/>
23+
<Reference Include="System.Data"/>
24+
<Reference Include="System.Xml"/>
25+
</ItemGroup>
26+
27+
<ItemGroup>
28+
<None Include="app.config"/>
29+
<None Include="packages.config"/>
30+
<Compile Remove="Properties\AssemblyInfo.cs"/>
31+
</ItemGroup>
32+
</Project>

0 commit comments

Comments
 (0)