-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #95 from kzrnm/release/v3.0.0-atcoder1
v3.0.0-atcoder1
- Loading branch information
Showing
13 changed files
with
144 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ on: | |
push: | ||
branches: | ||
- main | ||
- release/atcoder | ||
tags: | ||
- "v[0-9]+.[0-9]+.[0-9]+*" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,69 +1,69 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>net7.0;netcoreapp3.1;netstandard2.1</TargetFrameworks> | ||
<RootNamespace>AtCoder</RootNamespace> | ||
<OutputType>Library</OutputType> | ||
<PropertyGroup> | ||
<TargetFrameworks>net7.0;netcoreapp3.1;netstandard2.1</TargetFrameworks> | ||
<RootNamespace>AtCoder</RootNamespace> | ||
<OutputType>Library</OutputType> | ||
|
||
<LangVersion Condition="'$(TargetFramework)' == 'netstandard2.1'">7.3</LangVersion> | ||
<LangVersion Condition="'$(TargetFramework)' == 'netcoreapp3.1'">8</LangVersion> | ||
<LangVersion Condition="'$(TargetFramework)' == 'net7.0'">11</LangVersion> | ||
<LangVersion Condition="'$(TargetFramework)' == 'netstandard2.1'">7.3</LangVersion> | ||
<LangVersion Condition="'$(TargetFramework)' == 'netcoreapp3.1'">8</LangVersion> | ||
<LangVersion Condition="'$(TargetFramework)' == 'net7.0'">11</LangVersion> | ||
|
||
<AllowUnsafeBlocks>false</AllowUnsafeBlocks> | ||
<AllowUnsafeBlocks>false</AllowUnsafeBlocks> | ||
|
||
<PackageTags>ac-library-csharp;AtCoder</PackageTags> | ||
<PackageId>ac-library-csharp</PackageId> | ||
<Description>C# port of ac-library</Description> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<GeneratePackageOnBuild Condition="'$(Configuration)' == 'Release'">true</GeneratePackageOnBuild> | ||
<PackageTags>ac-library-csharp;AtCoder</PackageTags> | ||
<PackageId>ac-library-csharp</PackageId> | ||
<Description>C# port of ac-library</Description> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<GeneratePackageOnBuild Condition="'$(Configuration)' == 'Release'">true</GeneratePackageOnBuild> | ||
|
||
<NoWarn>$(NoWarn);CS1574;CA1034;CS1591;CS1734;IDE0039;IDE0057</NoWarn> | ||
<NoWarn>$(NoWarn);CS1574;CA1034;CS1591;CS1734;IDE0039;IDE0057</NoWarn> | ||
|
||
<PackageLicenseExpression></PackageLicenseExpression> | ||
<PackageLicenseFile>LICENSE</PackageLicenseFile> | ||
<PackageLicenseExpression></PackageLicenseExpression> | ||
<PackageLicenseFile>LICENSE</PackageLicenseFile> | ||
|
||
<DefineConstants>$(DefineConstants);ATCODER_CONTRACT</DefineConstants> | ||
<DefineConstants>$(DefineConstants);ATCODER_CONTRACT</DefineConstants> | ||
|
||
<GenericMath Condition="'$(TargetFramework)'!='netstandard2.1' And '$(TargetFramework)'!='netcoreapp3.1'">true</GenericMath> | ||
<DefineConstants Condition="'$(GenericMath)'=='true'">$(DefineConstants);GENERIC_MATH</DefineConstants> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<InternalsVisibleTo Include="ac-library-csharp.Test, PublicKey=002400000480000094000000060200000024000052534131000400000100010019f27fe0b62f6a374e67a12dbd713e0b521d251abc73fcb1e3929cc74a99905daae786e8854b1ccd7401ecb850627c58ecf491bebe9a2fef9effbc63e74e1c00e036282d754dd6c8ffd12e8fd07897bf31b551f68d594c2bdd5be8009adc6eb625e10629d36d731246a8a9c353b62c49902024cf1c7fc0f59952325eec2df5a6" /> | ||
</ItemGroup> | ||
<GenericMath Condition="'$(TargetFramework)'!='netstandard2.1' And '$(TargetFramework)'!='netcoreapp3.1'">true</GenericMath> | ||
<DefineConstants Condition="'$(GenericMath)'=='true'">$(DefineConstants);GENERIC_MATH</DefineConstants> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<InternalsVisibleTo Include="ac-library-csharp.Test, PublicKey=002400000480000094000000060200000024000052534131000400000100010019f27fe0b62f6a374e67a12dbd713e0b521d251abc73fcb1e3929cc74a99905daae786e8854b1ccd7401ecb850627c58ecf491bebe9a2fef9effbc63e74e1c00e036282d754dd6c8ffd12e8fd07897bf31b551f68d594c2bdd5be8009adc6eb625e10629d36d731246a8a9c353b62c49902024cf1c7fc0f59952325eec2df5a6" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(GenericMath)'!='true'"> | ||
<Compile Remove="**/*GenericMath.cs" /> | ||
<Compile Remove="**/*GenericMath/**/*.cs" /> | ||
</ItemGroup> | ||
<ItemGroup Condition="'$(GenericMath)'!='true'"> | ||
<Compile Remove="**/*GenericMath.cs" /> | ||
<Compile Remove="**/*GenericMath/**/*.cs" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\..\Source\AtCoderAnalyzer\AtCoderAnalyzer.csproj"> | ||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly> | ||
<OutputItemType>Analyzer</OutputItemType> | ||
</ProjectReference> | ||
<PackageReference Include="SourceExpander.Embedder" Version="5.0.0"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\..\Source\AtCoderAnalyzer\AtCoderAnalyzer.csproj"> | ||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly> | ||
<OutputItemType>Analyzer</OutputItemType> | ||
</ProjectReference> | ||
<PackageReference Include="SourceExpander.Embedder" Version="5.1.0" Condition="'$(EmbeddingSource)'=='true'"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Include="LICENSE" Pack="True" PackagePath="" /> | ||
<None Include="Math\MathLib.Convolution.Primitives.cs"> | ||
<DesignTime>True</DesignTime> | ||
<AutoGen>True</AutoGen> | ||
<DependentUpon>MathLib.Convolution.Primitives.tt</DependentUpon> | ||
</None> | ||
<None Update="Math\MathLib.Convolution.Primitives.tt"> | ||
<Generator>TextTemplatingFileGenerator</Generator> | ||
<LastGenOutput>MathLib.Convolution.Primitives.cs</LastGenOutput> | ||
</None> | ||
<Service Include="{508349b6-6b84-4df5-91f0-309beebad82d}" /> | ||
<Compile Update="Math\MathLib.Convolution.Primitives.cs"> | ||
<DesignTime>True</DesignTime> | ||
<AutoGen>True</AutoGen> | ||
<DependentUpon>MathLib.Convolution.Primitives.tt</DependentUpon> | ||
</Compile> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="LICENSE" Pack="True" PackagePath="" /> | ||
<None Include="Math\MathLib.Convolution.Primitives.cs"> | ||
<DesignTime>True</DesignTime> | ||
<AutoGen>True</AutoGen> | ||
<DependentUpon>MathLib.Convolution.Primitives.tt</DependentUpon> | ||
</None> | ||
<None Update="Math\MathLib.Convolution.Primitives.tt"> | ||
<Generator>TextTemplatingFileGenerator</Generator> | ||
<LastGenOutput>MathLib.Convolution.Primitives.cs</LastGenOutput> | ||
</None> | ||
<Service Include="{508349b6-6b84-4df5-91f0-309beebad82d}" /> | ||
<Compile Update="Math\MathLib.Convolution.Primitives.cs"> | ||
<DesignTime>True</DesignTime> | ||
<AutoGen>True</AutoGen> | ||
<DependentUpon>MathLib.Convolution.Primitives.tt</DependentUpon> | ||
</Compile> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.