-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSwiftlyS2.Codegen.csproj
More file actions
41 lines (36 loc) · 1.55 KB
/
SwiftlyS2.Codegen.csproj
File metadata and controls
41 lines (36 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>SwiftlyS2.Codegen</PackageId>
<Version>1.0.0</Version>
<Authors>Swiftly Solution SRL</Authors>
<PackageProjectUrl>https://github.com/swiftly-solution/codegen</PackageProjectUrl>
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
</PropertyGroup>
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<BaseOutputPath>build\</BaseOutputPath>
<OutputPath>$(BaseOutputPath)Release\SwiftlyS2</OutputPath>
<AssemblyName>SwiftlyS2.Codegen</AssemblyName>
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
<PlatformTarget>x64</PlatformTarget>
<NoWarn>$(NoWarn);CS1591;NU1903;NU1904</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Spectre.Console" Version="0.54.0" />
<PackageReference Include="WordNinjaSharp" Version="1.0.0" />
<PackageReference Include="protobuf-net.Reflection" Version="3.2.52" />
</ItemGroup>
<ItemGroup>
<Compile Remove="data\**\*.cs" />
<Compile Remove="**\obj\**\*.cs" />
<Compile Remove="**\bin\**\*.cs" />
<Compile Remove="**\output\**\*.cs" />
</ItemGroup>
</Project>