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

Commit

Permalink
Add dotNet core support
Browse files Browse the repository at this point in the history
  • Loading branch information
appleneko2001 committed Sep 3, 2020
1 parent 9448791 commit 194167c
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 7 deletions.
8 changes: 2 additions & 6 deletions tak2flac.Test/tak2flac.Test.csproj
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp3.0</TargetFramework>
<TargetFramework>netcoreapp3.1</TargetFramework>

<IsPackable>false</IsPackable>
</PropertyGroup>

<ItemGroup>
<None Remove="data\マイペースでいきましょう.tak" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.5.0" />
<PackageReference Include="MSTest.TestAdapter" Version="2.1.0" />
Expand All @@ -18,7 +14,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\tak2flac\tak2flac.csproj" />
<ProjectReference Include="..\tak2flac\tak2flac.Core.csproj" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion tak2flac/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("tak2flac")]
[assembly: AssemblyCopyright("Copyright © 2020")]
[assembly: AssemblyCopyright("github@appleneko2001")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand Down
32 changes: 32 additions & 0 deletions tak2flac/tak2flac.Core.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<RootNamespace>tak2flac</RootNamespace>
<AssemblyName>tak2flac</AssemblyName>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<PlatformTarget>AnyCPU</PlatformTarget>
<Prefer32Bit>true</Prefer32Bit>
<DefineConstants>DEBUG;TRACE</DefineConstants>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<Reference Include="System"/>
<Reference Include="Microsoft.CSharp"/>
<Reference Include="System.Data"/>
<Reference Include="System.Xml"/>
</ItemGroup>

<ItemGroup>
<None Include="app.config"/>
<None Include="packages.config"/>
<Compile Remove="Properties\AssemblyInfo.cs"/>
</ItemGroup>
</Project>

0 comments on commit 194167c

Please sign in to comment.