Skip to content
This repository was archived by the owner on May 21, 2022. It is now read-only.

Commit 18e1943

Browse files
committed
feat: init project
1 parent 4f2be8e commit 18e1943

File tree

3 files changed

+32
-0
lines changed

3 files changed

+32
-0
lines changed

md2docx/md2docx.cs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
using System;
2+
3+
namespace md2docx
4+
{
5+
class Md2Docx
6+
{
7+
static void Main(String[] args)
8+
{
9+
Console.WriteLine("Hello Md2Docx!");
10+
}
11+
}
12+
}

md2docx/md2docx.csproj

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,21 @@
3434
</PropertyGroup>
3535
<ItemGroup>
3636
<None Include="App.config" />
37+
<None Include="packages.config" />
38+
</ItemGroup>
39+
<ItemGroup>
40+
<Reference Include="DocumentFormat.OpenXml, Version=2.5.5631.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" />
41+
<Reference Include="Microsoft.Toolkit, Version=5.1.0.0, Culture=neutral, PublicKeyToken=4aff67a105548ee2, processorArchitecture=MSIL">
42+
<HintPath>..\packages\Microsoft.Toolkit.5.1.1\lib\netstandard2.0\Microsoft.Toolkit.dll</HintPath>
43+
</Reference>
44+
<Reference Include="Microsoft.Toolkit.Parsers, Version=5.1.0.0, Culture=neutral, PublicKeyToken=4aff67a105548ee2, processorArchitecture=MSIL">
45+
<HintPath>..\packages\Microsoft.Toolkit.Parsers.5.1.1\lib\netstandard2.0\Microsoft.Toolkit.Parsers.dll</HintPath>
46+
</Reference>
47+
<Reference Include="System.Xml" />
48+
<Reference Include="WindowsBase" />
49+
</ItemGroup>
50+
<ItemGroup>
51+
<Compile Include="md2docx.cs" />
3752
</ItemGroup>
3853
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
3954
</Project>

md2docx/packages.config

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<packages>
3+
<package id="Microsoft.Toolkit" version="5.1.1" targetFramework="net461" />
4+
<package id="Microsoft.Toolkit.Parsers" version="5.1.1" targetFramework="net461" />
5+
</packages>

0 commit comments

Comments
 (0)