Skip to content

Commit bf5d580

Browse files
committed
Disabling DebugSymbols
#2
1 parent 1dc1d69 commit bf5d580

File tree

1 file changed

+35
-30
lines changed

1 file changed

+35
-30
lines changed
Lines changed: 35 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,43 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
5-
<ImplicitUsings>enable</ImplicitUsings>
6-
<Nullable>enable</Nullable>
7-
</PropertyGroup>
3+
<PropertyGroup>
4+
<TargetFramework>net9.0</TargetFramework>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<Nullable>enable</Nullable>
7+
</PropertyGroup>
88

9-
<ItemGroup>
10-
<PackageReference Include="BouncyCastle.Cryptography" Version="2.6.1" />
11-
<PackageReference Include="FlowSynx.PluginCore" Version="1.3.0" />
12-
</ItemGroup>
9+
<PropertyGroup Condition="'$(Configuration)'=='Release'">
10+
<DebugSymbols>False</DebugSymbols>
11+
<DebugType>None</DebugType>
12+
</PropertyGroup>
1313

14-
<ItemGroup>
15-
<Compile Update="Resources.Designer.cs">
16-
<DesignTime>True</DesignTime>
17-
<AutoGen>True</AutoGen>
18-
<DependentUpon>Resources.resx</DependentUpon>
19-
</Compile>
20-
</ItemGroup>
14+
<ItemGroup>
15+
<PackageReference Include="BouncyCastle.Cryptography" Version="2.6.1" />
16+
<PackageReference Include="FlowSynx.PluginCore" Version="1.3.0" />
17+
</ItemGroup>
18+
19+
<ItemGroup>
20+
<Compile Update="Resources.Designer.cs">
21+
<DesignTime>True</DesignTime>
22+
<AutoGen>True</AutoGen>
23+
<DependentUpon>Resources.resx</DependentUpon>
24+
</Compile>
25+
</ItemGroup>
2126

22-
<ItemGroup>
23-
<EmbeddedResource Update="Resources.resx">
24-
<Generator>ResXFileCodeGenerator</Generator>
25-
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
26-
</EmbeddedResource>
27-
</ItemGroup>
27+
<ItemGroup>
28+
<EmbeddedResource Update="Resources.resx">
29+
<Generator>ResXFileCodeGenerator</Generator>
30+
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
31+
</EmbeddedResource>
32+
</ItemGroup>
2833

29-
<ItemGroup>
30-
<None Update="flowsynx.png">
31-
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
32-
</None>
33-
<None Update="README.md">
34-
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
35-
</None>
36-
</ItemGroup>
34+
<ItemGroup>
35+
<None Update="flowsynx.png">
36+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
37+
</None>
38+
<None Update="README.md">
39+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
40+
</None>
41+
</ItemGroup>
3742

3843
</Project>

0 commit comments

Comments
 (0)