[+] add et8 csproject

[+] add et8 csproject
This commit is contained in:
ALEXTANG
2023-07-13 12:26:12 +08:00
parent 336d4b2eb9
commit 8757e1f550
7 changed files with 347 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<RootNamespace>ET</RootNamespace>
<LangVersion>11</LangVersion>
<AssemblyName>App</AssemblyName>
</PropertyGroup>
<PropertyGroup>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>DOTNET</DefineConstants>
<OutputPath>..\..\Bin\</OutputPath>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Optimize>true</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DefineConstants>DOTNET</DefineConstants>
<OutputPath>..\..\Bin\</OutputPath>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Loader\DotNet.Loader.csproj" />
<ProjectReference Include="..\Model\DotNet.Model.csproj" />
</ItemGroup>
</Project>